Complete the command to enable the RabbitMQ management plugin.
rabbitmq-plugins [1] rabbitmq_managementThe enable command activates the RabbitMQ management plugin, allowing access to the management UI.
Complete the URL to access the RabbitMQ management UI on the local machine.
http://localhost:[1]/The RabbitMQ management UI listens on port 15672 by default.
Complete the command to add a new user 'guest' with password 'guest' for RabbitMQ management.
rabbitmqctl [1] guest guestThe correct command is rabbitmqctl add_user guest guest to add a user with username and password.
Fill both blanks to set permissions for user 'guest' on the virtual host '/'.
rabbitmqctl set_permissions -p [1] [2] ".*" ".*" ".*"
The virtual host is / and the user is guest to set permissions correctly.
Fill all three blanks to enable the management plugin, start the RabbitMQ server, and open the management UI URL.
rabbitmq-plugins [1] rabbitmq_management && systemctl [2] rabbitmq-server && xdg-open http://localhost:[3]/
First, enable the plugin, then start the server, and finally open the UI on port 15672.