Install MongoDB on OSX
If you are reading this, chances are that you need to deal with unstructured data. =) First, install mongodb using homebrew! brew install mongodb Now we need to set up a dir for mongodb to keep its data. For simplicity, we will just use its default db path /data/db. We will need to change the permission of that dir to your username and your group. Run ls -ld ~ to get that info. ...