Challenge - 5 Problems
RabbitMQ Installation Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
💻 Command Output
intermediate2:00remaining
RabbitMQ service status after installation
After installing RabbitMQ on a Linux system using the package manager, what is the expected output of the command
systemctl status rabbitmq-server if the service is running correctly?RabbitMQ
systemctl status rabbitmq-server
Attempts:
2 left
💡 Hint
Look for the service status that shows it is running and enabled.
✗ Incorrect
When RabbitMQ is installed and running properly, the systemd service status shows it as active (running) and enabled to start on boot.
🧠 Conceptual
intermediate1:30remaining
RabbitMQ dependencies before installation
Which of the following is a required dependency that must be installed before installing RabbitMQ on a Debian-based system?
Attempts:
2 left
💡 Hint
RabbitMQ is built on top of a specific programming language runtime.
✗ Incorrect
RabbitMQ requires the Erlang runtime environment because it is written in Erlang and depends on it to run.
❓ Configuration
advanced1:30remaining
Enabling RabbitMQ management plugin
Which command correctly enables the RabbitMQ management plugin after installation?
Attempts:
2 left
💡 Hint
The command uses 'rabbitmq-plugins' to manage plugins.
✗ Incorrect
The correct command to enable the management plugin is 'rabbitmq-plugins enable rabbitmq_management'.
❓ Troubleshoot
advanced2:00remaining
Diagnosing RabbitMQ service failure
After installing RabbitMQ, the service fails to start. Which log file should you check first to find detailed error messages on a Linux system?
Attempts:
2 left
💡 Hint
RabbitMQ logs its own errors in a specific directory under /var/log.
✗ Incorrect
RabbitMQ writes detailed logs in /var/log/rabbitmq/ with filenames like rabbit@hostname.log.
🔀 Workflow
expert3:00remaining
Correct order to install RabbitMQ on Ubuntu
What is the correct order of commands to install RabbitMQ on Ubuntu, including adding the repository, updating packages, installing Erlang, and installing RabbitMQ?
Attempts:
2 left
💡 Hint
Add the repository key before updating packages.
✗ Incorrect
First add the repository key (3), then update package lists (1), install Erlang (2), and finally install RabbitMQ (4).