0
0
RabbitMQdevops~20 mins

RabbitMQ management UI - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
RabbitMQ Management UI Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
1:30remaining
Purpose of RabbitMQ Management UI
What is the primary purpose of the RabbitMQ Management UI?
ATo replace the RabbitMQ server with a graphical alternative
BTo provide a web interface for monitoring and managing RabbitMQ servers
CTo automatically scale RabbitMQ clusters without user input
DTo serve as a command-line tool for RabbitMQ configuration
Attempts:
2 left
💡 Hint
Think about what a management UI usually does for a service.
💻 Command Output
intermediate
1:30remaining
Enable RabbitMQ Management Plugin Command Output
What is the output when you run the command rabbitmq-plugins enable rabbitmq_management on a RabbitMQ server where the plugin is not yet enabled?
RabbitMQ
rabbitmq-plugins enable rabbitmq_management
A
The following plugins have been enabled: [rabbitmq_management]
Applying plugin configuration to rabbitmq-server...done.
BSyntax error: unknown command rabbitmq-plugins.
CPlugin rabbitmq_management is already enabled.
DError: rabbitmq_management plugin not found.
Attempts:
2 left
💡 Hint
Enabling a plugin that is available but not enabled usually confirms activation.
Configuration
advanced
2:00remaining
Configuring RabbitMQ Management UI Port
Which configuration snippet correctly changes the RabbitMQ Management UI to listen on port 8080 instead of the default 15672?
Amanagement.listener.port = 8080
Brabbitmq_management.port = 8080
Clisteners.tcp.default = 8080
D[{rabbitmq_management, [{listener, [{port, 8080}]}]}].
Attempts:
2 left
💡 Hint
RabbitMQ configuration uses Erlang terms in its config file.
Troubleshoot
advanced
2:00remaining
Troubleshooting Management UI Access Failure
After enabling the RabbitMQ Management UI plugin, you cannot access the UI at http://localhost:15672/. What is the most likely cause?
AThe RabbitMQ server is not running or the management plugin failed to start
BThe management UI requires a separate installation package
CThe UI only works on port 5672 by default
DThe management UI is only accessible via SSH tunnel
Attempts:
2 left
💡 Hint
Check if the server and plugin are active before accessing the UI.
🔀 Workflow
expert
3:00remaining
Steps to Secure RabbitMQ Management UI Access
What is the correct order of steps to secure access to the RabbitMQ Management UI for production use?
A2,3,1,4
B3,1,2,4
C3,2,1,4
D3,4,2,1
Attempts:
2 left
💡 Hint
Think about enabling first, then securing users, then encrypting, then network restrictions.