Instal MongoDB di Mac
// updated 2021
$ brew tap mongodb/brew
$ brew install [email protected]
Salo Hopeless
// updated 2021
$ brew tap mongodb/brew
$ brew install [email protected]
//Starts Mongdb server @ mongodb://127.0.0.1:27017/
brew services start [email protected]
//Stops Mongdb server @ mongodb://127.0.0.1:27017/
brew services stop [email protected]
//mongo
mongo - starts the mongo client
ps -ef | grep mongod | grep -v grep | wc -l | tr -d ' '
brew services start [email protected]
#Step 3 to run as a service
//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
brew install [email protected]
#Step 2