Skip to content

Instantly share code, notes, and snippets.

@Gsantomaggio
Last active December 5, 2015 11:38
Show Gist options
  • Save Gsantomaggio/fb2c98fdf46b307c4c85 to your computer and use it in GitHub Desktop.
Save Gsantomaggio/fb2c98fdf46b307c4c85 to your computer and use it in GitHub Desktop.
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