Tries to install and use the rabbitmq server

I installed using brew update and brew install rabbitmq . Then I tried to stop the server and start it again (I tried to install by downloding the source before).

rabbitmqctl stop but I get `Stop and stop node rabbit @localhost ...

 Error: unable to connect to node rabbit@localhost : nodedown DIAGNOSTICS =========== nodes in question: [ rabbit@localhost ] hosts, their running nodes and ports: - localhost: [{rabbit,61707},{rabbitmqctl33002,62384}] current node details: - node name: ' rabbitmqctl33002@Dev-MacBook-Air ' - home dir: /Users/ohad - cookie hash: aeUlHJghkW6Yr7EMVbRJTg==` 

which I fix means that there is no process, so I tried to start again:

 rabbitmq-server 

and i get

 ERROR: node with name "rabbit" already running on "localhost" DIAGNOSTICS =========== nodes in question: [ rabbit@localhost ] hosts, their running nodes and ports: - localhost: [{rabbit,61707},{rabbitmqprelaunch33047,62398}] current node details: - node name: ' rabbitmqprelaunch33047@Dev-MacBook-Air ' - home dir: /Users/ohad - cookie hash: aeUlHJghkW6Yr7EMVbRJTg== 
+4
source share

All Articles