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" } ])
转载请记录来源!!!!
https://www.cnblogs.com/leihongnu/