mongodb homebrew code example
Example 1: brew services start mongodb
brew services start mongodb-community@4.2
brew services stop mongodb-community@4.2
mongo - starts the mongo client
Example 2: mongodb installation on mac
brew services start mongodb-community@4.2
mongod --config /usr/local/etc/mongod.conf --fork
ps aux | grep -v grep | grep mongod
mongo
Example 3: how to start mongodb in mac
command to activate mongodb through a terminal
mongod --dbpath /usr/local/var/mongodb --logpath /usr/local/var/log/mongodb/mongo.log --fork
Example 4: run MongoDB manually as a background process macos
mongod --config /usr/local/etc/mongod.conf --fork