Skip to content

Instantly share code, notes, and snippets.

@Eduard-gan
Last active June 19, 2019 07:45
Show Gist options
  • Save Eduard-gan/7ce161fedc94bff136c7933f5b471992 to your computer and use it in GitHub Desktop.
Save Eduard-gan/7ce161fedc94bff136c7933f5b471992 to your computer and use it in GitHub Desktop.
RabbitMQ Chore
docker run -d --hostname mf_rabbit --name mf_rabbit -p 5672:5672 -p 15672:15672 rabbitmq:3.7.15
rabbitmq-plugins enable rabbitmq_management
rabbitmqctl add_user your_user your_password
rabbitmqctl set_user_tags your_user administrator
rabbitmqctl set_permissions -p / your_user ".*" ".*" ".*"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment