mongodb 2019消息,不再开源,因此只能安装社区版本
brew tap mongodb/brew
brew install mongodb-community
To have launchd start mongodb/brew/mongodb-community now and restart at login:
brew services start mongodb/brew/mongodb-community
Or, if you don‘t want/need a background service you can just run:
mongod --config /usr/local/etc/mongod.conf
/usr/local/etc/mongod.conf
brew services start mongodb/brew/mongodb-community
mongod --config /usr/local/etc/mongod.conf
mongo
常见命令:
show dbs;
use admin;
关闭服务
db.shutdownServer();
https://github.com/mongodb/homebrew-brew
https://juejin.im/post/5d9d7ad66fb9a04e373163c3
https://www.runoob.com/mongodb/mongodb-osx-install.html
原文:https://www.cnblogs.com/shengulong/p/12100428.html