About RabbitMQ

RabbitMQ is an open source message broker software, also sometimes known as message-oriented middleware, that implements the Advanced Message Queuing Protocol (AMQP). It is very easy to use, and runs almost on all modern operating systems. It is built on the Open Telecom Platform framework for clustering and failover. RabbitMQ is written in the Erlang programming language, and is actively being developed by Rabbit Technologies Ltd.

In this tutorial, we will see how to install RabbitMQ server in CentOS 7 minimal server.

Prerequisites

RabbitMQ is written using Erlang programming language. So, it is must to install Erlang before installing RabbitMQ.

To install and configure Erlang in CentOS 7 server, refer the following link.

http://www.cnblogs.com/weifeng1463/p/8931543.html

Install RabbitMQ

Once you install Erlang, head over to the RabbitMQ download page for RPM based installers, and download the latest version using command:

wget https://www.rabbitmq.com/releases/rabbitmq-server/v3.6.1/rabbitmq-server-3.6.1-1.noarch.rpm

Then, run the following command as root user to add rabbitmq signing key:

rpm --import https://www.rabbitmq.com/rabbitmq-signing-key-public.asc

Finally, install RabbitMQ server using command:

yum install rabbitmq-server-3.6.1-1.noarch.rpm

Sample output:

Loaded plugins: fastestmirror
Examining rabbitmq-server-3.6.1-1.noarch.rpm: rabbitmq-server-3.6.1-1.noarch
Marking rabbitmq-server-3.6.1-1.noarch.rpm to be installed
Resolving Dependencies
--> Running transaction check
---> Package rabbitmq-server.noarch 0:3.6.1-1 will be installed
--> Finished Dependency Resolution Dependencies Resolved ================================================================================
Package Arch Version Repository Size
================================================================================
Installing:
rabbitmq-server noarch 3.6.1-1 /rabbitmq-server-3.6.1-1.noarch 5.5 M Transaction Summary
================================================================================
Install 1 Package Total size: 5.5 M
Installed size: 5.5 M
Is this ok [y/d/N]: y

That’s it. We have installed RabbitMQ.

SELinux and Firewall configuration

We must allow the following ports via SELinux, and Firewall in order to access RabbitMQ remote management console from the remote systems.

Make sure the following ports can be opened:

  • 4369 (epmd), 25672 (Erlang distribution)
  • 5672, 5671 (AMQP 0-9-1 without and with TLS)
  • 15672 (if management plugin is enabled)
  • 61613, 61614 (if STOMP is enabled)
  • 1883, 8883 (if MQTT is enabled)

To allow the above ports in firewall, run the following commands one by one:

firewall-cmd --permanent --add-port=4369/tcp
firewall-cmd --permanent --add-port=25672/tcp
firewall-cmd --permanent --add-port=5671-5672/tcp
firewall-cmd --permanent --add-port=15672/tcp
firewall-cmd --permanent --add-port=61613-61614/tcp
firewall-cmd --permanent --add-port=8883/tcp

Restart firewall service:

firewall-cmd --reload

And then, run the following command to allow SELinux to enable RabbitMQ service:

setsebool -P nis_enabled 1

Run the following command to start and enable RabbitMQ service:

systemctl start rabbitmq-server
systemctl enable rabbitmq-server

Now, check the status of RabbitMQ server using the following commands:

rabbitmqctl status

Sample output:

Status of node rabbit@server1 ...
[{pid,26591},
{running_applications,
[{rabbitmq_management,"RabbitMQ Management Console","3.6.1"},
{rabbitmq_web_dispatch,"RabbitMQ Web Dispatcher","3.6.1"},
{webmachine,"webmachine","1.10.3"},
{mochiweb,"MochiMedia Web Server","2.13.0"},
{ssl,"Erlang/OTP SSL application","7.3"},
{rabbitmq_management_agent,"RabbitMQ Management Agent","3.6.1"},
{rabbit,"RabbitMQ","3.6.1"},
{mnesia,"MNESIA CXC 138 12","4.13.3"},
{amqp_client,"RabbitMQ AMQP Client","3.6.1"},
{compiler,"ERTS CXC 138 10","6.0.3"},
{os_mon,"CPO CXC 138 46","2.4"},
{syntax_tools,"Syntax tools","1.7"},
{inets,"INETS CXC 138 49","6.2"},
{rabbit_common,[],"3.6.1"},
{public_key,"Public key infrastructure","1.1.1"},
{asn1,"The Erlang ASN1 compiler version 4.0.2","4.0.2"},
{ranch,"Socket acceptor pool for TCP protocols.","1.2.1"},
{crypto,"CRYPTO","3.6.3"},
{xmerl,"XML parser","1.3.10"},
{sasl,"SASL CXC 138 11","2.7"},
{stdlib,"ERTS CXC 138 10","2.8"},
{kernel,"ERTS CXC 138 10","4.2"}]},
{os,{unix,linux}},
{erlang_version,
"Erlang/OTP 18 [erts-7.3] [source-d2a6d81] [64-bit] [async-threads:64] [hipe] [kernel-poll:true]\n"},
{memory,
[{total,54224944},
{connection_readers,0},
{connection_writers,0},
{connection_channels,0},
{connection_other,2680},
{queue_procs,2680},
{queue_slave_procs,0},
{plugins,424296},
{other_proc,19559456},
{mnesia,58312},
{mgmt_db,111720},
{msg_index,32856},
{other_ets,1358408},
{binary,36944},
{code,27354680},
{atom,992409},
{other_system,4290503}]},
{alarms,[]},
{listeners,[{clustering,25672,"::"},{amqp,5672,"::"}]},
{vm_memory_high_watermark,0.4},
{vm_memory_limit,258528051},
{disk_free_limit,50000000},
{disk_free,12428034048},
{file_descriptors,
[{total_limit,924},{total_used,2},{sockets_limit,829},{sockets_used,0}]},
{processes,[{limit,1048576},{used,197}]},
{run_queue,0},
{uptime,55},
{kernel,{net_ticktime,60}}]

Access RabbitMQ management console

RabbitMQ management console will allow you to monitor the server processes via a web browser.

To enable the RabbitMQ management console, run the following command:

 rabbitmq-plugins enable rabbitmq_management
chown -R rabbitmq:rabbitmq /var/lib/rabbitmq/

Now. open your web browser and navigate to the following URL to access your RabbitMQ server management console.

  • http://ip-address:15672/

The default user name and password of RabbitMQ Management console is ‘guest’ and ‘guest’ .

However, you can create a new admin user if you want.

To do so, run:

rabbitmqctl add_user mqadmin mqadmin
rabbitmqctl set_user_tags mqadmin administrator
rabbitmqctl set_permissions -p / mqadmin ".*" ".*" ".*"

Enter the username and password to access RabbitMQ web console:

Congratulations! Here is how my RabbitMQ web dashboard looks like.

That’s all for now. Start using your RabbitMQ server.

For further details, check the links given at the end of this guide.

Cheers!

Reference links:

参考文章:https://www.unixmen.com/install-rabbitmq-server-centos-7/

最新文章

  1. vijos P1780 【NOIP2012】 开车旅行
  2. 安装win10
  3. finally关键字
  4. System.exit()方法的作用
  5. Aircrack-ng官方文档翻译[中英对照]---Airmon-ng
  6. 编译Hadoop源码
  7. mysql 存储过程 事务处理
  8. MessageBoxButtons.OKCancel的选择事件
  9. 前端技术之_CSS详解第三天
  10. python交互的几种方式
  11. 初学者易上手的SSH-spring 01控制反转(IOC)
  12. SpringBoot中集成redis
  13. 解读经典《C#高级编程》第七版 Page68-79.对象和类型.Chapter3
  14. 剑指offer(14)
  15. vue 引入Element组件
  16. Springframework和Hibernate版本对应关系
  17. PHP数组和字符串的处理函数汇总
  18. C++ 简单实现MFC ListControl 点击列头排序
  19. 判断URL文件是不是在于在。
  20. 使用rviz 查看远程主机

热门文章

  1. V4L2 camera 驱动 capture测试程序【转】
  2. java基础练习 17
  3. Selenium2+python自动化29-js处理多窗口【转载】
  4. failed to push some refs to 'git@github.com:laniu/liuna.git'报错原因
  5. 2018年最重要的HTML5开发手册,传播正能量
  6. react this.props.form异步执行问题
  7. 华农oj Problem B: Averyboy找密码【STL】
  8. [BZOJ 1266] 上学路线Route
  9. Flash3D学习计划(四)——学习纹理相关知识,载入一张纹理,并应用于前面的矩形;并学习多层纹理映射相关知识,尝试dark map, glow map
  10. 解决Eclipse 变量名的自动补全问题