mongodb安装过程中遇到很多问题,以下安装步骤亲测有效
一、使用brew安装mongodb需要先更新brew,brew update时间很长没有响可以使用中科大的镜像替换默认源:
替换brew.git
- cd "$(brew --repo)"
- git remote set-url origin https://mirrors.ustc.edu.cn/brew.git
替换homebrew-core.git
- cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
- git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git
二、mongodb最新的安装方法,之前旧的方法都无效了
- brew tap mongodb/brew
- brew install mongodb-community (可以加上版本号,指定版本)
三、安装之后需要执行以下步骤:
- sudo mkdir -p /data/db
- sudo chown ‘username’ /data/db
四、mongodb启动和停止
- brew services start mongodb-community
- brew services stop mongodb-community
网友评论