Skip to content

Instantly share code, notes, and snippets.

@ihor
Last active March 11, 2021 08:55
Show Gist options
  • Star 26 You must be signed in to star a gist
  • Fork 11 You must be signed in to fork a gist
  • Save ihor/5705626 to your computer and use it in GitHub Desktop.
Save ihor/5705626 to your computer and use it in GitHub Desktop.
Install RabbitMQ on Amazon Linux
# Modify /etc/yum.repos.d/epel.repo. Under the section marked [epel], change enabled=0 to enabled=1.
sudo yum install erlang --enablerepo=epel
wget http://www.rabbitmq.com/releases/rabbitmq-server/v3.1.1/rabbitmq-server-3.1.1-1.noarch.rpm
sudo rpm -Uvh rabbitmq-server-3.1.1-1.noarch.rpm
# Enable managament plugin
sudo rabbitmq-plugins enable rabbitmq_management
@LeeU1911
Copy link

LeeU1911 commented Oct 8, 2017

Thanks a ton! Super helpful!

@behconsci
Copy link

thanks buddy, this saved me possible minutes of search

@ihor
Copy link
Author

ihor commented Jan 19, 2018

@behconsci don't forget to bump the versions. This one is 5 year old.

@longnguyenduc
Copy link

Thank you a lot man ~~ you saved my day 👯‍♂️

@shaven
Copy link

shaven commented Jan 17, 2020

You saved me a bunch of time figure out how to get around this. Thank you!!!

@dalcarobo
Copy link

Thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment