Home java How to go to the RabbitMQ page?

How to go to the RabbitMQ page?

Author

Date

Category

Install Rabbitmq . Checked – everything works. Messages are sent and accepted. But I can’t go to the Rabbitmq server page. I enter the browser http://0.0.0.0:15672/ and nothing. The browser says that such a page does not exist. What am I doing wrong ?


Answer 1, Authority 100%

By default, the web interface is disabled, but you can enable it with a command to * NIX systems:

rabbitmq plugins enable rabbitmq_management

Windows is turned on with a command from the SBIN folder where the server is installed:

rabbitmq plugins.bat enable rabbitmq_management

After that, it is necessary to restart RabbitMQ and log in through the browser on the http: // localhost: 15672 . Default, login and password for entering Rabbitmq Managment Plugin: Guest / Guest

From version 3.3, a restriction on access to Guest / Guest from the host is different from localhost. But you can create a Test user with a password test and go under it from any host:

rabbitmqctl add_user Test Test \ N
RabbitMQCTL Set_user_Tags Test Administrator
RabbitmQCTL Set_permissions -p / Test. "*" ". *" ". *"

Answer 2, Authority 50%

http://127.0.0.1:15672/

or

http: // Localhost: 15672 /

If Rabbitmq stands on another machine, then you need to specify the address of the machine

Previous articleNGINX + Java
Next article504 Gateway Time-Out

Programmers, Start Your Engines!

Why spend time searching for the correct question and then entering your answer when you can find it in a second? That's what CompuTicket is all about! Here you'll find thousands of questions and answers from hundreds of computer languages.

Recent questions