Skip to content

Instantly share code, notes, and snippets.

@tomysmile
Last active January 27, 2023 13:01
Show Gist options
  • Save tomysmile/fe41f798516468a4c32bfbafbf7c9c12 to your computer and use it in GitHub Desktop.
Save tomysmile/fe41f798516468a4c32bfbafbf7c9c12 to your computer and use it in GitHub Desktop.

Revisions

  1. tomysmile revised this gist Jul 12, 2016. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion mac-rabbitmq-setup.md
    Original 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
    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.
  2. tomysmile revised this gist Jul 11, 2016. 1 changed file with 5 additions and 0 deletions.
    5 changes: 5 additions & 0 deletions mac-rabbitmq-setup.md
    Original 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.

  3. tomysmile created this gist Jul 11, 2016.
    31 changes: 31 additions & 0 deletions mac-rabbitmq-setup.md
    Original 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
    ```