Created
October 22, 2015 19:51
-
-
Save sdieunidou/1813409ddfd0185c82c7 to your computer and use it in GitHub Desktop.
create admin user on rabbitmq
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
rabbitmqctl add_user test test | |
rabbitmqctl set_user_tags test administrator | |
rabbitmqctl set_permissions -p / test ".*" ".*" ".*" |
for the above one to work we need to enable the management plugin I guess
rabbitmq-plugins enable rabbitmq_management
Works fine the solution of adding the user with rabbitmqctl command, specially when you don't have access to a decent browser to acess the rabbitmq_management's web page 👍
Works fine! Thank you!
Thanks
Works like a charm. Thank you!
thanks
Thanks its working fine.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
test using:
curl -i -u test:test http://localhost:15672/api/whoami