rabbitmq在centos7上的部署

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了rabbitmq在centos7上的部署相关的知识,希望对你有一定的参考价值。

Rabbitmq是目前流行的开源消息队列系统,用erlang语言开发。Rabbitmq是amqp(高级消息队列协议)的标准实现。群集非常方便,因为erlang天生就是一门分布式语言,但其本身并不支持负载均衡。
使用场景:在项目中,将一些无需即时返回且耗时的操作提取出来,进行异步处理,而这种异步处理的方式大大地节省了服务器的请求响应时间,从而提高了系统的吞吐量。
实验环境
Rabbitmq01集群的配置。
IP地址 主机名 操作系统 防火墙和selinux 用途
192.168.252.130 rabbitmq01 centos7(64位) 关闭 磁盘节点
192.168.252.166 rabbitmq02 centos7(64位) 关闭 内存节点
192.168.252.167 rabbitmq03 centos7(64位) 关闭 内存节点

首先我们需要配置三个节点的hosts文件,将如下内容分别加入到三台服务器上。
192.168.252.130 rabbitmq01
192.168.252.166 rabbitmq02
192.168.252.167 rabbitmq03


centos7-1(ip 192.168.252.130)
vim /etc/hostname //修改主机名

mq01.localdomain //删除原有内容并添加此内容

vim /etc/hosts

192.168.252.130 mq01
192.168.252.166 mq02
192.168.252.167 mq03

yum install -y epel-release
yum install -y rabbitmq-server
ln -s /usr/lib/rabbitmq//bin/* /usr/bin/
rabbitmq-plugins list //查看插件安装状况
rabbitmq-plugins enable rabbitmq_management //开启管理功能
systemctl start rabbitmq-server.service //开启服务
rabbitmqctl cluster_status //检查集群状态

Cluster status of node [email protected] ...br/>[{nodes,[{disc,[[email protected]]}]},
{running_nodes,[[email protected]]},
br/>{cluster_name,<<"[email protected]">>},
{partitions,[]}]
...done.


centos7-2(ip 192.168.252.166)
vim /etc/hostname //修改主机名

mq02.localdomain //删除原有内容并添加此内容

vim /etc/hosts

192.168.252.130 mq01
192.168.252.166 mq02
192.168.252.167 mq03

yum install -y epel-release
yum install -y rabbitmq-server
ln -s /usr/lib/rabbitmq//bin/* /usr/bin/
rabbitmq-plugins enable rabbitmq_management //开启管理功能
systemctl start rabbitmq-server.service //开启服务
rabbitmqctl cluster_status //检查集群状态
Cluster status of node [email protected] ...
br/>[{nodes,[{disc,[[email protected]]}]},
{running_nodes,[[email protected]]},
br/>{cluster_name,<<"[email protected]">>},
{partitions,[]}]


centos7-3(ip 192.168.252.167)

vim /etc/hostname //修改主机名

mq03.localdomain //删除原有内容并添加此内容

vim /etc/hosts

192.168.252.130 mq01
192.168.252.166 mq02
192.168.252.167 mq03

yum install -y epel-release
yum install -y rabbitmq-server
ln -s /usr/lib/rabbitmq//bin/* /usr/bin/
rabbitmq-plugins enable rabbitmq_management //开启管理功能
systemctl start rabbitmq-server.service //开启服务
rabbitmqctl cluster_status //检查集群状态
Cluster status of node [email protected] ...
br/>[{nodes,[{disc,[[email protected]]}]},
{running_nodes,[[email protected]]},
br/>{cluster_name,<<"[email protected]">>},
{partitions,[]}]
...done.


修改cookie
复制mq01的cookie序列号
vim /var/lib/rabbitmq/.erlang.cookie
AUKBYMMUHDEXPODERJIX
将其粘贴到另外两台服务器的cookie文件中

重启mq02,mq03的rabbitmq服务
systemctl stop rabbitmq-server.service
systemctl start rabbitmq-server.service


在02和03上操作内存节点
rabbitmqctl stop_app
rabbitmqctl join_cluster --ram [email protected]
rabbitmqctl start_app
rabbitmqctl cluster_status

[{nodes,[{disc,[[email protected]]},{ram,[[email protected],[email protected]]}]},br/>{running_nodes,[[email protected],[email protected],[email protected]]},
{cluster_name,<<"[email protected]">>},
{partitions,[]}]
...done.
至此rabbitmq部署完成打开浏览器http://192.168.252.130:15672
技术分享图片
显示该网页表示搭建成功








以上是关于rabbitmq在centos7上的部署的主要内容,如果未能解决你的问题,请参考以下文章

RabbitMQ 上的 Heroku、Django 和 celery

centos7 安装 rabbitmq

centos7安装rabbitmq

centos7部署rabbitmq集群

在CentOS7上部署Rabbitmq集群配置

CentOS7.2 1511部署RabbitMQ