dropUser

On this page本页内容

Definition定义

dropUser

Removes the user from the database on which you run the command. The dropUser command has the following syntax:语法如下所示:

{
  dropUser: "<user>",
  writeConcern: { <write concern> },
  comment: <any>
}

The dropUser command document has the following fields:

Field字段Type类型Description描述
dropUser string The name of the user to delete. You must issue the dropUser command while using the database where the user exists.
writeConcern document Optional.可选。The level of write concern for the removal operation. The writeConcern document takes the same fields as the getLastError command.
comment any

Optional.可选。A user-provided comment to attach to this command. Once set, this comment appears alongside records of this command in the following locations:

A comment can be any valid BSON type (string, integer, object, array, etc).

New in version 4.4.版本4.4中的新功能。

Before dropping a user who has the userAdminAnyDatabase role, ensure you have at least another user with user administration privileges.

Required Access

You must have the dropUser action on a database to drop a user from that database.

Example示例

The following sequence of operations in the mongo shell removes reportUser1 from the products database:

use products
db.runCommand( {
   dropUser: "reportUser1",
   writeConcern: { w: "majority", wtimeout: 5000 }
} )