Skip to content

Instantly share code, notes, and snippets.

@jimeh
Created March 24, 2011 10:47
Show Gist options
  • Save jimeh/884869 to your computer and use it in GitHub Desktop.
Save jimeh/884869 to your computer and use it in GitHub Desktop.
Mac OS X launchctl plist for Homebrew-based RabbitMQ installations. Place in: ~/Library/LaunchAgents
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>KeepAlive</key>
<true/>
<key>Label</key>
<string>com.rabbitmq.rabbitmq-server</string>
<key>Program</key>
<string>/usr/local/sbin/rabbitmq-server</string>
<key>RunAtLoad</key>
<true/>
<key>EnvironmentVariables</key>
<dict>
<key>PATH</key>
<string>/usr/local/sbin:/usr/bin:/bin:/usr/local/bin</string>
</dict>
<key>WorkingDirectory</key>
<string>/usr/local/var</string>
</dict>
</plist>
@ramubotsplash
Copy link

2017 - brew options changed and its much simpler now:

$ brew info rabbitmq
<snip>

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

@dexterbt1
Copy link

@Aarpy
thanks for this. I was on the same boat scratching my head where the plist are found

@morenoh149
Copy link

morenoh149 commented Aug 31, 2017

@Aarpy that is very useful thanks. But it does not behave the same as I usually do with sudo (sudo rabbitmq-server). Any idea why?

sudo brew services start rabbitmq doesn't work either.
And performing ps aux | grep rabbit doesn't show any processes when using the brew commands, only when I do sudo rabbitmq-server.

Tracking issue Homebrew/homebrew-core#17446

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment