1.启动不了服务
提示1:error: couldn’t connect to server 127.0.0.1:27017
提示2:src/mongo/shell/mongo.js
处理方案:找到mongodb安装目录,进入/bin目录下手动启动mongo
注意:./mongo (启动日志少)
./mongod (启动会打印大量日志)
2.日志提示找不到db
提示:NonExistentPath: Data directory /data/db not found. Create the missing directory or specify another path using (1) the --dbpath command line option, or (2) by adding the ‘storage.dbPath’ option in the configuration file.
处理方案:进入安装目录下的/data目录中,新建一个文件夹db,权限:755
3.日志提示无权限
提示:Operation not permitted
提示;/tmp/mongodb-27017.sock
直接删除:/tmp/mongodb-27017.sock 文件重启即可