Home - Schibsted-Tech-Polska/sfi-message-brokering GitHub Wiki
Welcome to the sfi-message-brokering 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 update
sudo apt-get install rabbitmq-server
-
- stop/start server
sudo invoke-rc.d rabbitmq-server [stop/start]
-
- Enable management plugin
sudo rabbitmq-plugins enable rabbitmq_management
In order to manage your rabbitmq go to http://localhost:15672 in your browser
Login with default credentials (u: guest, p: guest)