Complete the command to add a new user named 'guest' with password 'guest123'.
rabbitmqctl add_user guest [1]The add_user command requires the username and password. Here, the password is 'guest123'.
Complete the command to set permissions for user 'guest' on the virtual host '/' allowing configure, write, and read access.
rabbitmqctl set_permissions -p / guest [1] [2] [3]
The permissions require three regex patterns for configure, write, and read. Using ^.*$ allows all actions.
Fix the error in the command to delete user 'guest'.
rabbitmqctl [1] guestThe correct command to delete a user is delete_user.
Fill both blanks to list all users and then list all permissions for user 'guest'.
rabbitmqctl [1] && rabbitmqctl [2] guest
list_users shows all users, and list_user_permissions guest shows permissions for 'guest'.
Fill all three blanks to create a user 'admin', set a password 'admin123', and give full permissions on virtual host '/admin'.
rabbitmqctl add_user admin [1] && rabbitmqctl set_permissions -p [2] admin [3] [3] [3]
First, add user 'admin' with password 'admin123'. Then set full permissions on '/admin' using regex ^.*$ for configure, write, and read.