Skip to content

Instantly share code, notes, and snippets.

@RobertDober
Last active March 20, 2017 19:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RobertDober/40a2e63bd0ce692348772a1a95aba84d to your computer and use it in GitHub Desktop.
Save RobertDober/40a2e63bd0ce692348772a1a95aba84d to your computer and use it in GitHub Desktop.
Installing RabbitMQ on Mac OS/X
  • brew install rabbitmq -->
Management Plugin enabled by default at http://localhost:15672


To have launchd start rabbitmq now and restart at login:
  brew services start rabbitmq
Or, if you don't want/need a background service you can just run:
  rabbitmq-server  

rabbitmq-server does not start pby version miss-match with asdf version of erlang so we do something like the following

PATH="$(echo $PATH | ruby -anF: -e 'puts $F.grep_v(/\.asdf/).join(":")')" rabbitmq-server```

Probably better ways to do this but anyhow

The better way is to identify where the unshimmed erlang is and run with a custom PATH var, on my Mac OS/X that is

            PATH=/usr/local/bin:$PATH rabbitmq-server ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment