Skip to content

Instantly share code, notes, and snippets.

@vindia
Created January 23, 2012 13:20
Show Gist options
  • Save vindia/1663089 to your computer and use it in GitHub Desktop.
Save vindia/1663089 to your computer and use it in GitHub Desktop.
Launch MongoDB with launchd
<?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>org.mongodb.mongod</string>
<key>ProgramArguments</key>
<array>
<string>/usr/local/bin/mongod</string>
<string>run</string>
<string>--config</string>
<string>/usr/local/Cellar/mongodb/1.8.3-x86_64/mongod.conf</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<true/>
<key>WorkingDirectory</key>
<string>/usr/local/Cellar/mongodb</string>
<key>StandardErrorPath</key>
<string>/var/log/mongo.log</string>
<key>StandardOutPath</key>
<string>/var/log/mongo.log</string>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment