Activating rabbit MQ ' s Management Plugin
With the Rabbit MQ Management plug-in, you can better visualize the status of the Rabbit MQ Server instance, which you can activate at the command line using the following command.
Input: Rabbitmq-plugins.bat Enable Rabbitmq_management
At the same time, we also use the RABBITMQCTL console command (located in rabbitmq_server-3.6.3\sbin>) to create the user, password, bind permissions, and so on.
Create an administrative user
Input: Rabbitmqctl.bat add_user zhangweizhong weizhong1988
Setup Administrator
Input: Rabbitmqctl.bat set_user_tags zhangweizhong Administrator
Set permissions
Input: Rabbitmqctl.bat set_permissions-p/Zhangweizhong ". *" ". *" ". *"
Other commands
Query User: Rabbitmqctl.bat list_users
Query Vhosts:rabbitmqctl.bat list_vhosts
Start the RabbitMQ service: net stop RabbitMQ && net start RabbitMQ
Above these, account, vhost, authority, scope and so on basic set up.
Use your browser to open the Admin console for http://localhost:15672 access to rabbit MQ and use the account you just created to log into the system. (Default login Account:guest/guest)