安装完MongoDB后,发现mongo不生效。
zsh: command not found: mongo
原因:
因为我用的是zsh,需要编辑 zsh 的配置文件~/.zshrc。修改.bash_profile可能无效
~/.zshrc。修改.bash_profile可能无效
解决方案:
open ~/.zshrc
加上
export PATH="$PATH:/usr/local/opt/mongodb-community@4.2/bin"
然后:source ~/.zshrc