Ubuntu下添加admin用户,普通数据库用户
2017-06-29 本文已影响0人
xrichardyan
1)切换到admin,添加用户:richard,密码:password
use admin
db.addUser("richard","password",flase)
2)进行用户认证
db.auth("richard","password")
3)修改mongodb.conf文件配置
sudo vim /etc/mongodb.conf
按I键可进行对文本的编辑
将mongodb.conf文件中其中一行 #auth修改为auth(删除auth前的#)
先按Esc退出编辑模式,输入":wq"保存并退出vim编辑器
4)重启mongo服务
sudo service mongodb restart