Last active
December 23, 2015 07:29
-
-
Save stupidbodo/6601504 to your computer and use it in GitHub Desktop.
Setup and Install Rabbitmq FAST Ubuntu 12.04
This file contains 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
#!/bin/sh | |
# Setup Repo and Install | |
echo "deb http://www.rabbitmq.com/debian/ testing main" > /etc/apt/sources.list.d/rabbitmq.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 -y | |
service rabbitmq-server start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment