Created
February 11, 2014 20:51
-
-
Save gdakram/8943860 to your computer and use it in GitHub Desktop.
Debian - RabbitMQ Installtion
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# as root | |
echo -e "\ndeb http://www.rabbitmq.com/debian/ testing main" >> /etc/apt/sources.list | |
wget http://www.rabbitmq.com/rabbitmq-signing-key-public.asc | |
apt-key add rabbitmq-signing-key-public.asc | |
apt-get update | |
apt-get install rabbitmq-server | |
/usr/sbin/rabbitmq-plugins enable rabbitmq_management | |
/etc/init.d/rabbitmq-server restart | |
# binaries | |
# /usr/sbin/rabbitmqctl | |
# /usr/sbin/rabbitmq-plugins | |
# /usr/sbin/rabbitmq-server | |
# log dir (logrotate pretty please?) | |
# /var/log/rabbitmq | |
# data dir | |
# /var/lib/rabbitmq |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment