欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

解决mongodb在ubuntu下启动失败,提示couldn‘t remove fs lock errno:9 Bad file descriptor的错误

程序员文章站 2022-05-16 23:21:11
按照官网上的安装方法: 在ubuntu系统下有可能出现如下错误: couldn't remove fs lock errno:9 bad file descriptor...

按照官网上的安装方法:

在ubuntu系统下有可能出现如下错误:

couldn't remove fs lock errno:9 bad file descriptor

此时需要修改文件所有者

$ sudo mkdir -p /data/db/

$ sudo chown 'username‘ /data/db

其中第一句是建立你的数据库文件夹,第二句修改该文件夹的所有者

之后就可以成功启动mongodb了

参考: