Skip to content

Instantly share code, notes, and snippets.

@chmurph2
Created December 9, 2010 19:01
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save chmurph2/735159 to your computer and use it in GitHub Desktop.
Save chmurph2/735159 to your computer and use it in GitHub Desktop.
I created this plist in ~/Library/LaunchAgents after install RabbitMQ via Homebrew.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.rabbitmq</string>
<key>Program</key>
<string>/usr/local/sbin/rabbitmq-server</string>
<key>RunAtLoad</key>
<true/>
<key>UserName</key>
<string>your-username-here!</string>
<!-- need erl in the path -->
<key>EnvironmentVariables</key>
<dict>
<key>PATH</key>
<string>/usr/local/sbin:/usr/bin:/bin:/usr/local/bin</string>
</dict>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment