Mongodb 用户权限列表

mac2025-04-04  13

 

 

db.getRole('dbAdminAnyDatabase',{showPrivileges:true}) 查看某个权限可以做什么

shard_0:PRIMARY> db.getRole("dbAdminAnyDatabase",{showPrivileges:true}) { "role" : "dbAdminAnyDatabase", "db" : "admin", "isBuiltin" : true, "roles" : [ ], "inheritedRoles" : [ ], "privileges" : [ { "resource" : { "cluster" : true }, "actions" : [ "listDatabases" ] }, { "resource" : { "db" : "", "collection" : "" }, "actions" : [ "collMod", "collStats", "compact", "convertToCapped", "createCollection", "createIndex", "dbStats", "dropCollection", "dropDatabase", "dropIndex", "enableProfiler", "indexStats", "listCollections", "listIndexes", "planCacheIndexFilter", "planCacheRead", "planCacheWrite", "reIndex", "renameCollectionSameDB", "repairDatabase", "storageDetails", "validate" ] }, { "resource" : { "db" : "", "collection" : "system.indexes" }, "actions" : [ "collStats", "dbHash", "dbStats", "find", "killCursors", "listCollections", "listIndexes", "planCacheRead" ] }, { "resource" : { "db" : "", "collection" : "system.namespaces" }, "actions" : [ "collStats", "dbHash", "dbStats", "find", "killCursors", "listCollections", "listIndexes", "planCacheRead" ] }, { "resource" : { "db" : "", "collection" : "system.profile" }, "actions" : [ "collStats", "convertToCapped", "createCollection", "dbHash", "dbStats", "dropCollection", "find", "killCursors", "listCollections", "listIndexes", "planCacheRead" ] } ], "inheritedPrivileges" : [ { "resource" : { "cluster" : true }, "actions" : [ "listDatabases" ] }, { "resource" : { "db" : "", "collection" : "" }, "actions" : [ "collMod", "collStats", "compact", "convertToCapped", "createCollection", "createIndex", "dbStats", "dropCollection", "dropDatabase", "dropIndex", "enableProfiler", "indexStats", "listCollections", "listIndexes", "planCacheIndexFilter", "planCacheRead", "planCacheWrite", "reIndex", "renameCollectionSameDB", "repairDatabase", "storageDetails", "validate" ] }, { "resource" : { "db" : "", "collection" : "system.indexes" }, "actions" : [ "collStats", "dbHash", "dbStats", "find", "killCursors", "listCollections", "listIndexes", "planCacheRead" ] }, { "resource" : { "db" : "", "collection" : "system.namespaces" }, "actions" : [ "collStats", "dbHash", "dbStats", "find", "killCursors", "listCollections", "listIndexes", "planCacheRead" ] }, { "resource" : { "db" : "", "collection" : "system.profile" }, "actions" : [ "collStats", "convertToCapped", "createCollection", "dbHash", "dbStats", "dropCollection", "find", "killCursors", "listCollections", "listIndexes", "planCacheRead" ] } ] }

 

最新回复(0)