安装mongo后,启动发现sudo: mongod: command not found

需要添加环境变量:

  1. 编辑用户级配置文件
vim  ~/.bash_profile
  1. 添加配置信息
 export PATH=/usr/local/mongodb/bin:$PATH 
  1. 保存退出,刷新:source ~/.bash_profile

参考地址:
https://blog.csdn.net/qq_39148947/article/details/82462454
https://segmentfault.com/a/1190000016432070

你可能感兴趣的:(安装mongo后,启动发现sudo: mongod: command not found)