Skip to content

Instantly share code, notes, and snippets.

@peterfarrell
Created November 26, 2018 19:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save peterfarrell/550a4c4cacce517af25daee962013722 to your computer and use it in GitHub Desktop.
Save peterfarrell/550a4c4cacce517af25daee962013722 to your computer and use it in GitHub Desktop.
RabbitMQ Install
# Adapted from: http://www.rabbitmq.com/install-debian.html
if [ ! -f /etc/apt/sources.list.d/rabbitmq.list ]
then
echo "Installing RabbitMQ"
echo 'deb http://www.rabbitmq.com/debian/ testing main' | sudo tee /etc/apt/sources.list.d/rabbitmq.list
wget -O- https://www.rabbitmq.com/rabbitmq-release-signing-key.asc | sudo apt-key add -
apt update
apt -y install rabbitmq-server
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment