Skip to content

Instantly share code, notes, and snippets.

@jaywhy13
Last active March 14, 2016 18:20
Show Gist options
  • Save jaywhy13/b85154d63d9a36e88241 to your computer and use it in GitHub Desktop.
Save jaywhy13/b85154d63d9a36e88241 to your computer and use it in GitHub Desktop.
Install RabbitMQ Server 3.6 on Ubuntu 12.04
#!/bin/bash
echo "deb http://www.rabbitmq.com/debian/ testing main" | tee -a /etc/apt/sources.lst
echo "deb http://packages.erlang-solutions.com/ubuntu precise contrib" | tee -a /etc/apt/sources.lst
# Upgrade Erlang
wget http://packages.erlang-solutions.com/ubuntu/erlang_solutions.asc
sudo apt-key add erlang_solutions.asc
wget https://www.rabbitmq.com/rabbitmq-signing-key-public.asc
sudo apt-key add rabbitmq-signing-key-public.asc
sudo apt-get update
# Fix dependecies
sudo apt-get -f install
sudo apt-get install erlang
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment