0
0
RabbitMQdevops~20 mins

Installing RabbitMQ - Practice Exercises

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
RabbitMQ Installation Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
💻 Command Output
intermediate
2: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
A
● rabbitmq-server.service - RabbitMQ broker
   Loaded: loaded (/lib/systemd/system/rabbitmq-server.service; enabled; vendor preset: enabled)
   Active: active (running) since Fri 2024-06-14 10:00:00 UTC; 5min ago
B
● rabbitmq-server.service - RabbitMQ broker
   Loaded: loaded (/lib/systemd/system/rabbitmq-server.service; disabled; vendor preset: enabled)
   Active: inactive (dead) since Fri 2024-06-14 10:00:00 UTC; 5min ago
CUnit rabbitmq-server.service could not be found.
D
● rabbitmq-server.service - RabbitMQ broker
   Loaded: loaded (/lib/systemd/system/rabbitmq-server.service; enabled; vendor preset: enabled)
   Active: failed (Result: exit-code) since Fri 2024-06-14 10:00:00 UTC; 5min ago
Attempts:
2 left
💡 Hint
Look for the service status that shows it is running and enabled.
🧠 Conceptual
intermediate
1: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?
ANode.js runtime
BMySQL database server
CApache web server
DErlang runtime environment
Attempts:
2 left
💡 Hint
RabbitMQ is built on top of a specific programming language runtime.
Configuration
advanced
1:30remaining
Enabling RabbitMQ management plugin
Which command correctly enables the RabbitMQ management plugin after installation?
Arabbitmq-plugins enable rabbitmq_management
Brabbitmqctl enable_management_plugin
Crabbitmq-manage enable plugin management
Drabbitmq-enable plugin management
Attempts:
2 left
💡 Hint
The command uses 'rabbitmq-plugins' to manage plugins.
Troubleshoot
advanced
2: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?
A/var/log/syslog
B/var/log/rabbitmq/rabbit@localhost.log
C/etc/rabbitmq/rabbitmq.conf
D/var/log/apache2/error.log
Attempts:
2 left
💡 Hint
RabbitMQ logs its own errors in a specific directory under /var/log.
🔀 Workflow
expert
3: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?
A2,3,1,4
B1,3,2,4
C3,1,2,4
D3,2,1,4
Attempts:
2 left
💡 Hint
Add the repository key before updating packages.