Recall & Review
beginner
What is the RabbitMQ Management Plugin?
The RabbitMQ Management Plugin is a tool that provides a web-based user interface and HTTP API to monitor and manage RabbitMQ servers easily.
Click to reveal answer
beginner
How do you enable the RabbitMQ Management Plugin?
You enable it by running the command:
rabbitmq-plugins enable rabbitmq_management. This activates the plugin and starts the web UI and HTTP API.Click to reveal answer
beginner
What is the default URL to access the RabbitMQ Management web UI?
The default URL is
http://localhost:15672/. You open this in a browser to see the management dashboard.Click to reveal answer
intermediate
What can you do with the RabbitMQ HTTP API?
You can use the HTTP API to programmatically check server status, list queues, exchanges, users, and perform management tasks like creating or deleting resources.
Click to reveal answer
beginner
Which port does the RabbitMQ Management Plugin use by default for HTTP API and web UI?
It uses port 15672 by default for both the HTTP API and the web UI.
Click to reveal answer
How do you enable the RabbitMQ Management Plugin?
✗ Incorrect
The correct command to enable the management plugin is
rabbitmq-plugins enable rabbitmq_management.What is the default port for accessing the RabbitMQ Management web UI?
✗ Incorrect
Port 15672 is the default port for the RabbitMQ Management web UI and HTTP API.
Which of the following is NOT a feature of the RabbitMQ HTTP API?
✗ Incorrect
The HTTP API does not handle server software updates; it manages RabbitMQ resources and status.
After enabling the management plugin, where do you access the web UI?
✗ Incorrect
The web UI is accessible at
http://localhost:15672/ by default.What command disables the RabbitMQ Management Plugin?
✗ Incorrect
To disable the plugin, use
rabbitmq-plugins disable rabbitmq_management.Explain how to enable and access the RabbitMQ Management Plugin and its web UI.
Think about the command to enable and the URL to open.
You got /3 concepts.
Describe the main uses of the RabbitMQ HTTP API provided by the Management Plugin.
Focus on what tasks the API helps automate.
You got /3 concepts.