Last active
January 27, 2023 13:01
-
-
Save tomysmile/fe41f798516468a4c32bfbafbf7c9c12 to your computer and use it in GitHub Desktop.
Revisions
-
tomysmile revised this gist
Jul 12, 2016 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -13,7 +13,7 @@ brew install rabbitmq The RabbitMQ server scripts are installed into /usr/local/sbin. This is not automatically added to your path, so you may wish to add: ``` export PATH=$PATH:/usr/local/sbin to your .bash_profile or .profile or .bashrc ``` All scripts run under your own user account. Sudo is not required. -
tomysmile revised this gist
Jul 11, 2016 . 1 changed file with 5 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -29,3 +29,8 @@ or as a standalone process: ``` rabbitmq-server ``` ## Default user access The broker creates a user guest with password guest. Unconfigured clients will in general use these credentials. By default, these credentials can only be used when connecting to the broker as localhost so you will need to take action before connecting fromn any other machine. -
tomysmile created this gist
Jul 11, 2016 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,31 @@ Update Homebrew’s package database. ``` brew update ``` To install the MongoDB binaries, issue the following command in a system shell: ``` brew install rabbitmq ``` The RabbitMQ server scripts are installed into /usr/local/sbin. This is not automatically added to your path, so you may wish to add: ``` EXPORT PATH=$PATH:/usr/local/sbin to your .bash_profile or .profile or .bashrc ``` All scripts run under your own user account. Sudo is not required. To install as a services : ``` brew services start rabbitmq ``` or as a standalone process: ``` rabbitmq-server ```