这篇文章主要介绍mac环境下mongodb无法启动怎么办,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!

解决方法1

原因:mongodb没有启动

用brew service来启动

brewservicesstartmongodb

解决方法2

原因:没有db文件夹

BeforeyoustartMongoDBforthefirsttime,createthedirectorytowhichthemongodprocesswillwritedata.Bydefault,themongodprocessusesthe/data/dbdirectory.Ifyoucreateadirectoryotherthanthisone,youmustspecifythatdirectoryinthedbpathoptionwhenstartingthemongodprocesslaterinthisprocedure.

1.创建文件夹mkdir-p/data/db2.给文件夹设置可写sudochown-R`id-un`/data/db3.运行mongodbcd/usr/local/mongodb/binmongodmongo4.结束运行mongodbControl+C

解决方法3

原因:因意外造成Mongodb服务非正常关闭且造成Mongod服务无法正常启动

删除data目录下的*.lock文件

sudorm/data/db/mongod.locksudorm/data/db/WiredTiger.lock然后再启动Mongod服务cd/usr/local/mongodb/binmongodmongo如果还是不行,可以查看一下进程,然后杀掉:ps-aef|grepmongokill***cd/usr/local/mongodb/binmongodmongo

解决方法4

原因:Permission denied

cd/usr/local/mongodb/binsudomongod

以上是mac环境下mongodb无法启动怎么办的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注亿速云行业资讯频道!