Enabling RabbitMQ Management Plugin
By default, RabbitMQ only runs on port 5672 (AMQP). You must enable the visual dashboard manually.
1. Enable the Plugin
Run this command in your terminal or Docker container:
rabbitmq-plugins enable rabbitmq_management
2. Docker Users
Ensure you are pulling the "management" tag image, not the base image.
docker run -d -p 15672:15672 rabbitmq:3-management