By default, RabbitMQ does not embed a web-based management console but offers it as an optional plugin. This management console makes it very easy to peek into a running RabbitMQ instance, so we definitely want to have it installed from the get-go.
The Debian package has installed several scripts, one of them being rabbitmqplugins, whose purpose is to allow the installation and removal of plugins. Let’s use it to install the management plugin as follows:
1 |
$ sudo rabbitmq-plugins enable rabbitmq_management |
Yes, it is that easy! As invited by the installer, we need to restart RabbitMQ as follows:
1 |
$ sudo service rabbitmq-server restart |
Using your favorite web browser, you can now reach the home page of the management console by navigating to http://
I hope you like this Post, Please feel free to comment below, your suggestion and problems if you face - we are here to solve your problems.