无法通过mongodb.conf更改mongodb中的dbpath
我收到以下消息
initAndListen std::Exception 中的异常:boost::filesystem::exists: 权限被拒绝:“/vol/mongodb”,终止
在 /var/log/mongodb/mongodb.log
ls -al /vol /mongodb 给出 -
drwxrwxrwx 2 mongodb mongodb 4096 2011-08-07 12:10 ./
当我更改 dbpath 时,回到默认值,即 /var/lib/mongodb - 它工作正常。
我该如何解决这个问题?
I am getting the following message
exception in initAndListen std::exception: boost::filesystem::exists: Permission denied: "/vol/mongodb", terminating
in /var/log/mongodb/mongodb.log
ls -al /vol/mongodb gives -
drwxrwxrwx 2 mongodb mongodb 4096 2011-08-07 12:10 ./
When I change the dbpath, back to the default, which is /var/lib/mongodb - it works fine.
How do I solve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我最初遇到了同样的问题,发现这是由于
mongodb
用户对 parent 目录没有适当的权限引起的。我建议检查
/vol
以确保mongodb
用户至少可以从该目录读取文件。可能还需要执行权限,我怀疑这对于每个后续父目录(直到根目录)都适用。I had the same problem initially and found it was caused by the
mongodb
user not having appropriate permissions on the parent directory.I'd recommend checking
/vol
to ensure that themongodb
user can at least read files from that directory. May also need execute permissions too, and I suspect this will hold for each subsequent parent directory up to root.