mac上安装mongodb

在mac下安装mongodb 的步骤
更新于: 2022-10-11 14:40:27

安装

  • 准备
  • 安装脚本
xcode-select --install
brew tap mongodb/brew
brew update
brew install mongodb-community@6.0

服务管理

  • mongod
# 启动/停止/查看列表
brew services start mongodb-community@6.0
brew services stop mongodb-community@6.0
brew services list
# 作为独立的服务
mongod --config /usr/local/etc/mongod.conf --fork
# 在进程中查看
ps aux | grep -v grep | grep mongod
# 在shell 中连接
mongosh

参考