Created
November 26, 2018 19:04
-
-
Save peterfarrell/550a4c4cacce517af25daee962013722 to your computer and use it in GitHub Desktop.
RabbitMQ Install
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
# 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