0
0
RabbitMQdevops~10 mins

RabbitMQ management UI - Interactive Code Practice

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

Complete the command to enable the RabbitMQ management plugin.

RabbitMQ
rabbitmq-plugins [1] rabbitmq_management
Drag options to blanks, or click blank then click option'
Astatus
Benable
Clist
Ddisable
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'disable' instead of 'enable' disables the plugin.
Using 'list' only shows available plugins.
Using 'status' shows the plugin status but does not enable it.
2fill in blank
medium

Complete the URL to access the RabbitMQ management UI on the local machine.

RabbitMQ
http://localhost:[1]/
Drag options to blanks, or click blank then click option'
A8080
B4369
C5672
D15672
Attempts:
3 left
💡 Hint
Common Mistakes
Using 5672 which is the AMQP protocol port, not the management UI port.
Using 8080 which is a common web port but not for RabbitMQ UI.
Using 4369 which is used by Erlang distribution.
3fill in blank
hard

Complete the command to add a new user 'guest' with password 'guest' for RabbitMQ management.

RabbitMQ
rabbitmqctl [1] guest guest
Drag options to blanks, or click blank then click option'
Aadd_user
Badd
Cset_user
Duser_add
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'add' which is incorrect syntax.
Using 'set_user' which is not a valid command for adding users.
Using 'user_add' which does not exist.
4fill in blank
hard

Fill both blanks to set permissions for user 'guest' on the virtual host '/'.

RabbitMQ
rabbitmqctl set_permissions -p [1] [2] ".*" ".*" ".*"
Drag options to blanks, or click blank then click option'
A/
Bguest
Cadmin
Ddefault
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'admin' or 'default' as user names instead of 'guest'.
Using incorrect virtual host names.
5fill in blank
hard

Fill all three blanks to enable the management plugin, start the RabbitMQ server, and open the management UI URL.

RabbitMQ
rabbitmq-plugins [1] rabbitmq_management && systemctl [2] rabbitmq-server && xdg-open http://localhost:[3]/
Drag options to blanks, or click blank then click option'
Aenable
Bstart
C15672
Drestart
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'disable' instead of 'enable' for the plugin.
Using 'restart' instead of 'start' when the server is not running.
Using wrong port numbers for the UI.