如何在Ubuntu 10.04中使用–auth选项重新启动mongodb?

前端之家收集整理的这篇文章主要介绍了如何在Ubuntu 10.04中使用–auth选项重新启动mongodb?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
@H_403_0@ 那么重新启动可以使用stop和start命令,但是我似乎不能使用–auth选项来执行mongodb命令.
root@random:/home/random/public_html# mongodb stop
root@random:/home/random/public_html# start mongodb --auth
start: invalid option: --auth
root@random:/home/random/public_html# start mongodb
mongodb start/running,process 29473
root@random:/home/random/public_html#

如何用–auth选项启动mongodb?

编辑/etc/mongod.conf并添加如下行:
auth=true

然后:

service mongod restart

有关更多配置选项,请参阅此页面http://www.mongodb.org/display/DOCS/File+Based+Configuration

对于MongoDB最新版本3.x上面的代码不会工作,下面的代码在mongod.conf如果你使用mongodb 3.x

security:
   authorization: enabled
原文链接:https://www.f2er.com/ubuntu/349138.html

猜你在找的Ubuntu相关文章