Error: unable to connect to node rabbit@localhost: nodedown The user who created the message queue reported an error

Create message queue user error

Error

Insert picture description here

Solution

Query the process of mq

ps -ef | grep rabbitmq

Kill the mq process

ps -ef | grep rabbitmq | grep -v grep | awk '{print $2}' | xargs kill -9

Start mq

rabbitmq-server -detached

Query the status of mq

rabbitmqctl status

Final Results

Try again, the results are as follows
Insert picture description here

Guess you like

Origin blog.csdn.net/Pyy0928/article/details/115010847