RabbitMQ : Use Web UI2016/09/03 |
Enable Management Plugin to use Web based administration tool.
|
|
[1] | Enable Management Plugin. |
[root@dlp ~]# rabbitmq-plugins enable rabbitmq_management The following plugins have been enabled: mochiweb webmachine rabbitmq_web_dispatch amqp_client rabbitmq_management_agent rabbitmq_management Plugin configuration has changed. Restart RabbitMQ for changes to take effect.[root@dlp ~]# systemctl restart rabbitmq-server
|
[2] | If Firewalld is running, allow Web UI port. |
[root@dlp ~]# firewall-cmd --add-port=15672/tcp --permanent success [root@dlp ~]# firewall-cmd --reload success |
[3] | Access to the "http://(RabbitMQ server's hostname or IP address):15672/" from a client, then, RabbitMQ login form is displayed, login with an admin user you added. |
[4] | Just logined. It's possible to do administrative operations on here. |
Sponsored Link |