There is a second set of tags provided with the management plugin installed and enabled by default, which is available on the standard management port of 15672
So you have to use image rabbitmq:3-management for Management Plugin
or you can enable RabbitMQ management plugin with the rabbitmq:latest image with this Dockerfile content
FROM rabbitmq:latest
# Enable RabbitMQ management plugin
RUN rabbitmq-plugins enable rabbitmq_management
Note : Deploy the container app with management image and you will able to access it without mentioning the port 15672 in the url.
2
Answers
I solved it, it was nonsense.
thanks!!
The
rabbitmq:latest
image is not enabling therabbitmq_management
plugin by default. Which only enabled theseIn the doc
So you have to use image
rabbitmq:3-management
forManagement Plugin
or you can enable RabbitMQ management plugin with the
rabbitmq:latest
image with thisDockerfile
contentNote : Deploy the container app with management image and you will able to access it without mentioning the port
15672
in the url.Hope this helps