Last active
February 22, 2024 22:19
-
-
Save juelvaldivia/a9446d978d5c16c168aac26d4fb0a796 to your computer and use it in GitHub Desktop.
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
$ sudo pacman -S rabbitmq | |
$ sudo systemctl enable --now rabbitmq | |
$ sudo rabbitmq-plugins enable rabbitmq_mqtt | |
$ sudo rabbitmq-plugins enable rabbitmq_management | |
$ sudo rabbitmqctl add_user admin1 admin1 | |
$ sudo rabbitmqctl set_permissions -p / admin1 ".*" ".*" ".*" | |
$ sudo rabbitmqctl set_user_tags admin1 management administrator | |
visit http://localhost:15672 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment