db.serverStatus() 提示无权限:not authorized on admin to execute command

 

 

登录mongo,也db.auth() 验证OK,但是无法执行命令。

db.serverStatus() 需要root权限才可以使用

 

 

给admin添加root权限: 

db.system.users.find()

db.grantRolesToUser( "admin" , [ { role: "root", db: "admin" } ])

 

posted @ 2022-08-05 17:29  leihongnu  阅读(856)  评论(0编辑  收藏  举报