1.没有权限
开启验证之后,再使用命令行,会报没有权限的错误,这是因为在使用命令行之前需要先验证一下
注意一点, 帐号是跟着库走的,所以在指定库里授权,必须也在指定库里验证(auth)。
# 假设admin开启了权限验证
# 帐号为 'root', 密码: '123456', roles: ['role': 'root']
> use admin
> show dbs
{
"ok" : 0,
"errmsg" : "not authorized on example to execute command dbstats: 1.0, scale: undefined }",
"code" : 13,
"codeName" : "Unauthorized"
}
## 使用命令行之前先验证一次
> db.auth('root', '123456')
1
> db.system.users.find().pretty() // ok
具体