Last active
June 19, 2019 07:45
-
-
Save Eduard-gan/7ce161fedc94bff136c7933f5b471992 to your computer and use it in GitHub Desktop.
RabbitMQ Chore
This file contains hidden or 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
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