1. RABBITMQ has a default login user guest/guest, but this user can only log on locally, so first create a remote login user (user name admin, password admin123 )
To create a user:
Rabbitmqctl Add_user Admin admin123
Make it an administrator:
Rabbitmqctl set_user_tags Admin Administrator
2. Enable the Web Management monitoring plug- in on one of the nodes:
Rabbitmq-plugins Enable Rabbitmq_management
Other nodes enable the Web Management client:
Rabbitmq-plugins Enable Rabbitmq_management_agent
3. Default port is 15672, configure iptables allow rule for 15672 Port
Iptables-a input-m State--state new-m tcp-p TCP--dport 15672-j ACCEPT
4. In the browser input IP that opens the Web Management node (for example , rabbit01):192.168.179.128:15672
650) this.width=650; "src=" Https://s4.51cto.com/wyfs02/M00/9D/5D/wKiom1l-5tGQf6zXAAA_hCfuiv4646.gif "title=" Rabbitmqweb01.gif "alt=" Wkiom1l-5tgqf6zxaaa_hcfuiv4646.gif "/>
Enter the user name and password you created above to log in.
This article is from the "I am not my" blog, please be sure to keep this source http://wangwq.blog.51cto.com/8711737/1952389
RABBITMQ using the Web management interface plugin