Home - Schibsted-Tech-Polska/sfi-message-brokering GitHub Wiki

Welcome to the sfi-message-brokering wiki!

RabbitMQ Server installation

    1. Add the below line to your /etc/apt/sources.list

deb http://www.rabbitmq.com/debian/ testing main

    1. 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

    1. stop/start server

sudo invoke-rc.d rabbitmq-server [stop/start]

    1. 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)