安装 mongodb 数据库 (Mac)
-
安装 homebrew
Homebrew 是mac系统中的软件包管理器 详细见brew安装
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
-
添加 mongodb 仓库源
brew tap mongodb/brew
-
安装 mongodb
安装前确保系统已经安装 xcode 命令行编译开发工具
xcode-select --install
brew install mongodb-community
-
启动 mongodb
brew services run mongodb-community
-
停止 mongodb
brew services stop mongodb-community
-
文件位置
- 数据库配置文件:/usr/local/etc/mongod.conf
- 数据库文件默认存放位置:/usr/local/var/mongodb
- 日志存放位置:/usr/local/var/log/mongodb/mongo.log
网友评论