Installation of RabbitMQ on Jessie Debian
Add following rows to your /etc/apt/sources.list
1 |
deb http://www.rabbitmq.com/debian/ testing main |
Next you will need to update your certificates
1 2 3 |
cd /tmp wget https://www.rabbitmq.com/rabbitmq-signing-key-public.asc apt-key add rabbitmq-signing-key-public.asc |
Install RabbitMq
1 2 |
apt-get update apt-get install rabbitmq-server |
Enable web interface
1 |
rabbitmq-plugins enable rabbitmq_management |
Once enabled you will be able to reach your RabbitMQ installation...