The rabbitmqweb management interface cannot use the guest user to log on, rabbitmqguest. The rabbitmqweb management interface cannot be accessed by using the guest user. after rabbitmqguest installs the latest version of rabbitmq (3.3.1) and enables managementplugin, use the default account guest to log on to the management console. the rabbitmq web management interface cannot use the guest user to log on. rabbitmqguest
Install the latest version of rabbitmq (3.3.1) and enable the management plugin. use the default account guest to log on to the console, but the system prompts that the logon fails.
After reading the official release document, I learned that the account guest has all operation permissions and is the default account. for security reasons, the guest user can only log on to and use it through localhost, it is also recommended to modify the password of the guest user and create other account management to use rabbitmq (this function was introduced in version 3.3.0 ).
You can delete <"guest"> in loopback_users of rabbit. app in the ebin directory or configure this item in the configuration file rabbitmq. config,
And restart rabbitmq. you can use the guest account to log on to the management console through any IP address, but it is always against the original intention of the designer. In addition, we didn't know much about this one before, so it is necessary to summarize it.
1. user management
User management includes adding users, deleting users, viewing user lists, and changing user passwords.
Corresponding commands
(1) add a user
Rabbitmqctl add_user Username Password
(2) delete a user
Rabbitmqctl delete_user Username
(3) change the user's password
Rabbitmqctl change_password Username Newpassword
(4) view the current user list
Rabbitmqctl list_users
Http://www.bkjia.com/PHPjc/986019.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/986019.htmlTechArticlerabbitmq web management interface can not use the guest user login, rabbitmqguest install the latest version of rabbitmq (3.3.1), and after enabling management plugin, use the default account guest login management control...