Skip to content

Instantly share code, notes, and snippets.

@stupidbodo
Last active December 23, 2015 07:29
Show Gist options
  • Save stupidbodo/6601504 to your computer and use it in GitHub Desktop.
Save stupidbodo/6601504 to your computer and use it in GitHub Desktop.
Setup and Install Rabbitmq FAST Ubuntu 12.04
#!/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