Install the latest version of RABBITMQ (3.3.1), and enable management plugin, using the default account guest login to the management console, but prompted the login failed.
After looking through the official release document, I learned that because the account guest has all the operation rights, and is the default account, for security reasons, guest users can only use localhost login, It is recommended that you modify the password of the guest user and create new account management using RABBITMQ (this feature was introduced in version 3.3.0).
Although can be in a more wretched way: The Ebin directory under the Rabbit.app in the Loopback_users << "Guest" >> Delete, or in the configuration file Rabbitmq.config to configure the item,
and restart the RABBITMQ, can use the Guest account any IP login management console, but always contrary to the original intention of the designer, coupled with the previous understanding of this piece is not much, so it is necessary to summarize.
1. User Management
User management includes adding users, deleting users, viewing user lists, and modifying user passwords.
The corresponding command
(1) Add a new user
Rabbitmqctl Add_user Username Password
(2) Delete a user
Rabbitmqctl Delete_user Username
(3) Modify the user's password
Rabbitmqctl Change_password Username NewPassword
(4) View current user list
Rabbitmqctl list_users
RABBITMQ Web Management interface cannot log on with guest user