Skip to content

Instantly share code, notes, and snippets.

@betapcode
Last active October 17, 2015 17:29
Show Gist options
  • Save betapcode/01d9dc779521aec7ec84 to your computer and use it in GitHub Desktop.
Save betapcode/01d9dc779521aec7ec84 to your computer and use it in GitHub Desktop.
mongodb.plist add to LaunchDaemons on macbook with path /Library/LaunchDaemons/mongodb.plist
<?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>mongodb</string>
<key>ProgramArguments</key>
<array>
<string>/usr/local/mongodb/bin/mongod</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<true/>
<key>WorkingDirectory</key>
<string>/usr/local/mongodb</string>
<key>StandardErrorPath</key>
<string>/usr/local/var/log/mongodb/error.log</string>
<key>StandardOutPath</key>
<string>/usr/local/var/log/mongodb/output.log</string>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment