RabbitMQ installation - Schibsted-Tech-Polska/sfi-message-brokering GitHub Wiki
RabbitMQ Server installation
-
- Add the below line to your /etc/apt/sources.list
deb http://www.rabbitmq.com/debian/ testing main
-
- To avoid warnings about unsigned packages, add public key to your trusted key list using apt-key(8):
wget https://www.rabbitmq.com/rabbitmq-signing-key-public.asc
sudo apt-key add rabbitmq-signing-key-public.asc
sudo apt-get install rabbitmq-server
-
- stop/start server
sudo invoke-rc.d rabbitmq-server stop/start/etc.
-
- Enable management plugin
sudo rabbitmq-plugins enable rabbitmq_management
In order to manage your rabbitmq go to http://localhost:15672 in your browser