brew install mongodb 安装mongodb提示:No available formula with the name "mongodb"

如果使用brew安装mongodb的时候出错,并且提示:No available formula with the name "mongodb"

那么可以执行下面的方法:

  • 查看官方文档

安装

  1. 更新brew
brew update
  1. 首先创建一个tap仓库
brew tap mongodb/brew
  1. 安装社区版本
brew install mongodb-community
  1. 安装完成之后可以查看是否安装成功,里面会有mongodb-community的文件夹
brew list

启动

  1. 在/data/db创建文件失败,所以查到可以在~下进行创建
mkdir -p ~/data/db
  1. 启动数据库,注意这个窗口不要关闭
sudo mongod --dbpath=/Users/${你的用户名}/data/db/

链接并使用数据库

1.安装的社区版本要使用这个命令,新建另一个窗口,启动

mongosh
  1. 也可以下载 robo 3T 进行可视化管理
1635844657585.jpg

你可能感兴趣的:(brew install mongodb 安装mongodb提示:No available formula with the name "mongodb")