Created
June 2, 2015 15:00
-
-
Save sanmiguel/7ef24a539a45b7d36b22 to your computer and use it in GitHub Desktop.
OSX launchctl plist file for kairosdb
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//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>Label</key> | |
| <string>kairosdb</string> | |
| <key>EnvironmentVariables</key> | |
| <dict> | |
| <key>KAIROS_PID_FILE</key> | |
| <string>/usr/local/var/run/kairosdb.pid</string> | |
| </dict> | |
| <key>KeepAlive</key> | |
| <dict> | |
| <key>SuccessfulExit</key> | |
| <false/> | |
| </dict> | |
| <key>ProgramArguments</key> | |
| <array> | |
| <string>~/git/kairosdb/bin/kairosdb.sh</string> | |
| <string>start</string> | |
| </array> | |
| <key>RunAtLoad</key> | |
| <true/> | |
| <key>WorkingDirectory</key> | |
| <string>/usr/local/var</string> | |
| <key>StandardErrorPath</key> | |
| <string>/usr/local/var/log/kairosdb/kairosdb.log</string> | |
| <key>StandardOutPath</key> | |
| <string>/usr/local/var/log/kairosdb/kairosdb.log</string> | |
| </dict> | |
| </plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment