-
-
Save drfill/ea0a94dfcb37d98921100382b1fceedd to your computer and use it in GitHub Desktop.
I created this plist in ~/Library/LaunchAgents after install RabbitMQ via Homebrew.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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