I installed MongoDB and have set it up like so:
DB path: /data/db
System-wide config file: /usr/local/mongodb/mongod.conf
launc
On Mac I'd recommend you install mongo with homebrew which installs all programs into /usr/local
. You will have the default paths:
/usr/local/etc/mongod.conf
/usr/local/var/mongodb
/usr/local/var/log/mongodb/mongo.log
/usr/local/opt/mongodb/homebrew.mxcl.mongodb.plist
To install: brew install mongodb
to restart mongo you do:
launchctl stop homebrew.mxcl.mongodb
launchctl start homebrew.mxcl.mongodb