Skip to content

Instantly share code, notes, and snippets.

@chrisabrams
Forked from jch/rabbitmq-install-osx.md
Created May 1, 2012 17:32
Show Gist options
  • Save chrisabrams/2569873 to your computer and use it in GitHub Desktop.
Save chrisabrams/2569873 to your computer and use it in GitHub Desktop.

Revisions

  1. @jch jch created this gist Apr 28, 2012.
    24 changes: 24 additions & 0 deletions rabbitmq-install-osx.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,24 @@
    # Troubleshooting RabbitMQ installation on OSX via homebrew

    brew update
    brew install rabbitmq

    To see if rabbitmq is running after following the installation instructions:

    launchctl list | grep rabbit
    > 48303 - homebrew.mxcl.rabbitmq

    You should see a process id in the first column. If not, it's because `rabbitmq-server` is not running.

    Try to manually start `rabbitmq-server`

    rabbitmq-server

    If you see an error message after a minute or so like:

    ERROR: epmd error for host "yourhostname": timeout (timed out establishing tcp connection)

    Then you need to update your `/etc/hosts` file to add your hostname to the list of localhost:

    127.0.0.1 yourhostname