Skip to content

Instantly share code, notes, and snippets.

@farukterzioglu
Forked from yetanotherchris/install-rabbitmq.sh
Created August 17, 2018 13:57
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 farukterzioglu/98f0e7aef72ff163149e1eec10d98446 to your computer and use it in GitHub Desktop.
Save farukterzioglu/98f0e7aef72ff163149e1eec10d98446 to your computer and use it in GitHub Desktop.
RabbitMQ on Docker with admin UI
# AWS specific install of Docker
sudo yum update -y
sudo yum install -y docker
sudo service docker start
sudo usermod -a -G docker ec2-user
# exit the SSH session, login again
# Docker
docker run -d --hostname my-rabbit --name some-rabbit -p 4369:4369 -p 5671:5671 -p 5672:5672 -p 15672:15672 rabbitmq
docker exec some-rabbit rabbitmq-plugins enable rabbitmq_management
# Login at http://localhost:15672/ (or the IP of your docker host)
# using guest/guest
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment