Skip to content

Instantly share code, notes, and snippets.

@ghalusa
Created September 21, 2014 23:39
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ghalusa/5de968091f9adc1dd037 to your computer and use it in GitHub Desktop.
Save ghalusa/5de968091f9adc1dd037 to your computer and use it in GitHub Desktop.
MongoDB startup plist file for Mac OS X
<?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.mongo.mongod</string>
<key>RunAtLoad</key>
<true/>
<key>ProgramArguments</key>
<array>
<string>/usr/local/bin/mongod</string>
<string>--dbpath</string>
<string>/var/lib/mongodb/</string>
<string>--logpath</string>
<string>/var/log/mongodb.log</string>
</array>
</dict>
</plist>
@lucas-janon
Copy link

thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment