0
0
RabbitMQdevops~10 mins

Installing RabbitMQ - Interactive Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the command to update the package list before installing RabbitMQ.

RabbitMQ
sudo apt-get [1]
Drag options to blanks, or click blank then click option'
Aupdate
Binstall rabbitmq-server
Cupgrade
Dremove rabbitmq-server
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'install' before updating package list
Using 'remove' instead of 'update'
2fill in blank
medium

Complete the command to install RabbitMQ server on a Debian-based system.

RabbitMQ
sudo apt-get [1] rabbitmq-server
Drag options to blanks, or click blank then click option'
Aupdate
Bremove
Cinstall
Dupgrade
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'update' instead of 'install'
Using 'remove' which deletes software
3fill in blank
hard

Fix the error in the command to start the RabbitMQ service.

RabbitMQ
sudo systemctl [1] rabbitmq-server
Drag options to blanks, or click blank then click option'
Astart
Brestart
Cstop
Ddisable
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'stop' which turns off the service
Using 'disable' which prevents service from starting
4fill in blank
hard

Fill both blanks to enable the RabbitMQ management plugin and then restart the service.

RabbitMQ
sudo rabbitmq-plugins [1] rabbitmq_management
sudo systemctl [2] rabbitmq-server
Drag options to blanks, or click blank then click option'
Aenable
Bstart
Crestart
Ddisable
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'start' instead of 'enable' for the plugin
Using 'start' instead of 'restart' for the service
5fill in blank
hard

Fill all three blanks to check RabbitMQ service status, enable it to start on boot, and then stop it.

RabbitMQ
sudo systemctl [1] rabbitmq-server
sudo systemctl [2] rabbitmq-server
sudo systemctl [3] rabbitmq-server
Drag options to blanks, or click blank then click option'
Astatus
Benable
Cstop
Drestart
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'start' instead of 'status' to check service
Using 'disable' instead of 'enable' to start on boot