MongoDB
安装
MacOS
-
brew本来不能安装
-
这是用于官方MongoDB软件的自定义HomebrewTap
-
使用以下命令在MacOS终端会话中添加自定义Tap:
brew tap mongodb/brew
-
可正常安装
brew install mongodb-community@4.2
如果安装了旧版本报错
删除后重新安装
brew untap mongodb/brew && brew tap mongodb/brew
brew install mongodb-community@4.2
除了二进制文件之外,安装还创建了:
- the configuration file (/usr/local/etc/mongod.conf)
- the log directory path (/usr/local/var/log/mongodb)
- the data directory path (/usr/local/var/mongodb)