Rabbit MQ

It is a powerful queuing mechanism with connecting support from multiple programming languages.

Install Rabbit MQ on Mac :

A brew for the RabbitMQ server is available from HomebrewNote: You may not be able to install the RabbitMQ brew from inside a firewall.

Install the Server

Before installing make sure you have the latest brews:

brew update

Then, install RabbitMQ server with:

brew install rabbitmq

Run RabbitMQ Server

The RabbitMQ server scripts are installed into /usr/local/sbin. This is not automatically added to your path, so you may wish to add
PATH=$PATH:/usr/local/sbin to your .bash_profile or .profile. The server can then be started with terminal command : rabbitmq-server.

All scripts run under your own user account. Sudo is not required.

Leave a comment