ShrnPrmshr
ShrnPrmshr

Reputation: 363

Can not access rabbitmq management configured in docker even though its status is running

I am new docker world and I am attempting to access the RabbitMQ Management plugin on my windows 10. I am following this. But when I try "http://container-ip:15672 " I can not access to management.

Anyone has any experience with such problem?

Upvotes: 3

Views: 7999

Answers (1)

siddhartino
siddhartino

Reputation: 359

If you started docker with

 docker run -d --hostname my-rabbit --name some-rabbit rabbitmq:3-management

as described in the reference you mentioned, you might need to add a -p 15672:15672 to that command line in order to make the management port accessible from the host.

I just ran into the same problem as docker newbie on windows 10 and found that solution here.

Upvotes: 9

Related Questions