how to brew install mongodb code example
Example 1: how to brew install mongodb
$ brew tap mongodb/brew
$ brew install mongodb-community
Example 2: mongodb installation on mac
//Starts Mongdb server @ mongodb://127.0.0.1:27017/
brew services start [email protected]
mongod --config /usr/local/etc/mongod.conf --fork
ps aux | grep -v grep | grep mongod
mongo
Example 3: brew mongo start
brew services start [email protected]
Example 4: start mongodb server mac
mongod --config /usr/local/etc/mongod.conf --fork