Created
November 26, 2012 20:14
-
-
Save apackeer/4150328 to your computer and use it in GitHub Desktop.
RabbitMQ Notes
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
| Starting RabbitMQ: | |
| sudo rabbitmq-server -detached | |
| Stopping RabbitMQ: | |
| sudo rabbitmqctl stop | |
| Adding User: | |
| rabbitmqctl add_user hulk hulk | |
| Adding Vhost: | |
| rabbitmqctl add_vhost hulk | |
| Setting Permissions: | |
| rabbitmqctl set_permissions -p hulk hulk ".*" ".*" ".*" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment