losee
losee

Reputation: 2238

I cannot start rabbitmq on my mac

I have brew installed rabbitmq on my mac and have tried the following

rabbitmq-server start

sbin/service rabbitmq-server start

and neither work.How do I start it?

Upvotes: 17

Views: 32791

Answers (4)

ekpono
ekpono

Reputation: 252

UPDATED

USL: http://localhost:15672/

Login try this

username: guest
password: guest

Upvotes: 5

Rahul Jain
Rahul Jain

Reputation: 410

Try with brew services start rabbitmq in terminal after that go to

localhost:15672 enter username and password which is

username-guest 
password-guest 

Upvotes: 2

roottraveller
roottraveller

Reputation: 8232

Here are a few commands to get you started. Just open your cli and type from anywhere

brew services start rabbitmq     //start 
brew services stop  rabbitmq     //stop

brew services restart rabbitmq   //restart 

You can also list all the running services by

brew services list

Alternative way -

Go to the directory where rabbitMQ is installed and run following commands

cd rabbitmq_server-3.5.3/      //check you's version 
sbin/rabbitmq-server           //start server 

sbin/rabbitmqctl shutdown      //stop server 

Upvotes: 13

Majid
Majid

Reputation: 1723

You should be able to run /usr/local/sbin/rabbitmq-server or use brew services start rabbitmq

Upvotes: 36

Related Questions