码迷,mamicode.com
首页 > 数据库 > 详细

mongodb 设置权限

时间:2018-11-03 19:19:22      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:hit   OLE   ace   mono   ica   mongo   over   database   uri   

切换到要加密的数据库
use diary

创建有 readWrite 权限的用户
db.createUser({ user: "youruser", pwd: "yourpassword", roles: [{ role: "readWrite", db: "diary" }] })

启用权限验证
./mongod --auth

命令行连接
./mongo -u "youruser" -p "yourpassword" --authenticationDatabase diary

url连接
mongodb://youruser:yourpassword@localhost:27017/diary

?

mongodb 设置权限

标签:hit   OLE   ace   mono   ica   mongo   over   database   uri   

原文地址:https://www.cnblogs.com/daysme/p/9901646.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!