0
0
RabbitMQdevops~10 mins

Upgrade procedures in RabbitMQ - Interactive Code Practice

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

Complete the command to check the current RabbitMQ version.

RabbitMQ
rabbitmqctl [1]
Drag options to blanks, or click blank then click option'
Aversion
Bstatus
Clist_users
Dstart
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'status' instead of 'version' to check RabbitMQ version.
Trying to use 'list_users' which shows users, not version.
2fill in blank
medium

Complete the command to stop the RabbitMQ service before upgrade.

RabbitMQ
sudo systemctl [1] rabbitmq-server
Drag options to blanks, or click blank then click option'
Astart
Benable
Crestart
Dstop
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'start' or 'restart' instead of 'stop'.
Using 'enable' which manages startup, not stopping.
3fill in blank
hard

Fix the error in the command to update RabbitMQ package on Debian-based systems.

RabbitMQ
sudo apt-get [1] rabbitmq-server
Drag options to blanks, or click blank then click option'
Ainstall
Bupgrade
Cupdate
Dremove
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'upgrade' which upgrades all packages, not a single package.
Using 'update' which refreshes package lists, not installs.
4fill in blank
hard

Fill both blanks to enable the RabbitMQ management plugin after upgrade.

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 'restart' after enabling plugin.
Using 'disable' which turns off the plugin.
5fill in blank
hard

Fill all three blanks to create a backup of RabbitMQ data before upgrade.

RabbitMQ
sudo systemctl [1] rabbitmq-server && sudo cp -r /var/lib/rabbitmq/mnesia [2] && sudo systemctl [3] rabbitmq-server
Drag options to blanks, or click blank then click option'
Astop
B/backup/rabbitmq_mnesia_backup
Cstart
Drestart
Attempts:
3 left
💡 Hint
Common Mistakes
Starting service before backup instead of stopping.
Using 'restart' instead of 'start' after backup.