Mac installation and start RabbitMq

Install using Homebrew

If it is not installed, please refer to my Mac installation HomeBrew article

Install

Excuting an order

brew install rabbitmq

insert image description here

start method

brew services start rabbitmq

insert image description here

port description

port usefulness
5672 RabbitMQ communication port, which is the port used for connection
15672 RabbbitMQ management interface port, you need to enable the Management plug-in

These two things need to know

Enter the management interface

Username: guest
Password: guest
Prerequisite: only localhost can access
insert image description here

create a user

insert image description here

Permission Description

Role permissions
management Users can access the management plugin
policymaker Users can access the management plugin and manage the policies and parameters of the vhosts they can access
monitoring Users can access the management plugin to view all connections and channels and node related information
administrator User can do everything monitoring can do, manage users, vhosts and permissions, close connections from other users, and manage policies and parameters for all vhosts

Guess you like

Origin blog.csdn.net/A_yonga/article/details/131916480