在Mac上安装MongoDB有几种方法,我们这里介绍一种比较简单的方法:
步骤一:使用Homebrew安装MongoDB
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew tap mongodb/brew
brew install mongodb-community
步骤二:创建MongoDB数据目录
sudo mkdir -p /System/Volumes/Data/data/db
sudo chown -R `id -un` /System/Volumes/Data/data/db
步骤三:启动MongoDB服务
brew services start mongodb/brew/mongodb-community
步骤四:连接MongoDB
mongo
步骤五:验证安装
brew services list
如果MongoDB服务状态为started,则表示安装成功。
至此,你已经成功在Mac上安装了MongoDB。接下来你可以通过命令行或者MongoDB可视化工具来管理MongoDB数据库。