Last active
December 5, 2015 11:38
-
-
Save Gsantomaggio/fb2c98fdf46b307c4c85 to your computer and use it in GitHub Desktop.
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
apt-get update && | |
apt-get -y install wget && | |
apt-get -y install nano && | |
echo "deb http://packages.erlang-solutions.com/debian jessie contrib" >> /etc/apt/sources.list && | |
wget http://packages.erlang-solutions.com/debian/erlang_solutions.asc && | |
apt-key add erlang_solutions.asc && | |
apt-get -y update && | |
apt-get -y install erlang && | |
apt-get -y install git && | |
apt-get -y install make && | |
apt-get -y install python && | |
apt-get -y install xsltproc && | |
apt-get -y install zip && | |
mkdir rmq_stable && | |
cd rmq_stable && | |
git clone https://github.com/rabbitmq/rabbitmq-public-umbrella.git . && | |
git checkout stable && | |
make up_c BRANCH=stable |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment