针对你提出的“mongoservererror: not authorized on admin to execute command”错误,我们可以从以下几个方面进行排查和解决: 确认MongoDB实例是否启用了身份验证: MongoDB可以在配置时选择是否启用身份验证。如果MongoDB实例启用了身份验证,那么任何试图连接到数据库的操作都需要提供有效的用户名和密码。如果未启用身份...
主要是解决在测试使用mongo db 时候,总是出现的MongoAuthenticationException 异常和 not authorized for query,not authorized on admin to execute command 等问题。 直接上测试步骤图拉。 我这个是先卸载了原来的mongo服务,然后删除我们配置的data文件夹下的所有东西,同时又清空原来测试生成的log。 主要是造就个干净的...
"errmsg":"not authorized on admin to execute command { find: \"system.version\", filter: { _id: \"shardIdentity\" }, lsid: { id: UUID(\"db3f050d-1c97-712d-8ad3-9c9df27d6c67\") }, $clusterTime: { clusterTime: Timestamp(1662603775, 1), signature: { hash: BinData(0, 1B73...
Mongodb默认是不需要用户密码就可以连接的,如果使用命令报错"not authorized on admin to execute command ",则表示当前登陆用户不具备相应权限; 解决办法:通过创建一个用户,赋予用户root权限 注意:在createUser之前先use admin切换一下。 db.createUser({user:"root", pwd:"123456", roles:[{role:"root",db:"...
mongodb 报错 not authorized on admin to execute command【 version 3.2.18 】 mongodb version 3.2.18 测试问题: 分析: 从报错内容上看是权限不够,但不明了为什么,因为已经使用的超级用户权限: {"_id":"admin.myUserAdmin","user":"root","db":"admin","roles": [...
【MongoDB】日志报错not authorized on admin to execute command 第一步 useadmin 第二步 db.grantRolesToUser ( "my_exporter", [ { role: "__system", db: "admin" } ] )
MongoDB6.0报错:“mongo” 不是内部或外部命令,也不是可运行的程序或批处理文件。 mongodb not authorized,notauthorizedonadmintoexecutecommand{listCollections:1.0,filter:{},$db:\"admin\"} 重新操作
"Checking authorization failed","attr":{"error":{"code":13,"codeName":"Unauthorized","errmsg":"not authorized on admin to execute command { find: "system.version", filter: { _id: "shardIdentity" }, limit: 1, singleBatch: true, , $db: "admin", $readPreference: { mode: "primary...
Error: couldn't add user: not authorized onadminto execute command { createUser: "username", pwd: "password", roles: [ { role: "readWrite", db: "test" } ] } 这个错误表明我们没有足够的权限在admin数据库上执行创建用户的操作。
AdminUser- username: String- password: String+createUser() : void+grantRoles() : voidUser- username: String- password: String+createUser() : void 五、总结 本文通过一个不少于600字的文章详细介绍了解决“mongodb couldn’t add user: not authorized on”错误的方法。首先,我们创建了一个具有管理员...