Definition定义
db.dropUser(username, writeConcern)Removes the user from the current database.从当前数据库中删除用户。Important
mongosh
Method方法This page documents a本页记录了一种mongoshmethod. This is not the documentation for database commands or language-specific drivers, such as Node.js.mongosh方法。这不是数据库命令或特定语言驱动程序(如Node.js)的文档。For the database command, see the有关数据库命令,请参阅dropUsercommand.dropUser命令。For MongoDB API drivers, refer to the language-specific MongoDB driver documentation.有关MongoDB API驱动程序,请参阅特定语言的MongoDB驱动程序文档。Thedb.dropUser()method takes the following arguments:db.dropUser()方法接受以下参数:Parameter参数Type类型Description描述usernamestring字符串The name of the user to remove from the database.要从数据库中删除的用户名。writeConcerndocument文档Optional.可选。The level of write concern for the operation. See Write Concern Specification.操作的写入关注级别。请参阅写入关注规范。Thedb.dropUser()method wraps thedropUsercommand.db.dropUser()方法封装dropUser命令。Before dropping a user who has the在删除具有userAdminAnyDatabaserole, ensure you have at least another user with user administration privileges.userAdminAnyDatabase角色的用户之前,请确保您至少有另一个具有用户管理权限的用户。
Compatibility兼容性
This method is available in deployments hosted in the following environments:此方法在以下环境中托管的部署中可用:
Important
This command is not supported in MongoDB Atlas clusters. MongoDB Atlas集群不支持此命令。For information on Atlas support for all commands, see Unsupported Commands.有关Atlas支持所有命令的信息,请参阅不支持的命令。
- MongoDB Enterprise
: The subscription-based, self-managed version of MongoDB:MongoDB的基于订阅的自我管理版本 - MongoDB Community
: The source-available, free-to-use, and self-managed version of MongoDB:MongoDB的源代码可用、免费使用和自我管理版本
Behavior行为
Replica set副本集
If run on a replica set, 如果在副本集上运行db.dropUser() is executed using "majority" write concern by default.db.dropUser(),默认情况下使用"majority"写关注执行。
Required Access所需访问权限
You must have the 您必须对数据库执行dropUser action on a database to drop a user from that database.dropUser操作,才能从该数据库中删除用户。
Example示例
The following 以下db.dropUser() operation drops the reportUser1 user on the products database.db.dropUser()操作将reportUser1用户删除到产品数据库中。
use products
db.dropUser("reportUser1", {w: "majority", wtimeout: 5000})