Reputation: 2238
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
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
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
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
Reputation: 1723
You should be able to run /usr/local/sbin/rabbitmq-server
or use brew services start rabbitmq
Upvotes: 36