- Reference >
mongoShell Methods >- Role Management Methods >
- db.createRole()
db.createRole()¶
On this page
Definition¶
-
db.createRole(role, writeConcern)¶ Creates a role in a database. You can specify privileges for the role by explicitly listing the privileges or by having the role inherit privileges from other roles or both. The role applies to the database on which you run the method.
The
db.createRole()method takes the following arguments:Parameter Type Description roledocument A document containing the name of the role and the role definition. writeConcerndocument Optional. The level of write concern to apply to this operation. The writeConcerndocument uses the same fields as thegetLastErrorcommand.The
roledocument has the following form:The
roledocument has the following fields:Field Type Description rolestring The name of the new role. privilegesarray The privileges to grant the role. A privilege consists of a resource and permitted actions. For the syntax of a privilege, see the
privilegesarray.You must include the
privilegesfield. Use an empty array to specify no privileges.rolesarray An array of roles from which this role inherits privileges.
You must include the
rolesfield. Use an empty array to specify no roles to inherit from.In the
rolesfield, you can specify both built-in roles and user-defined role.To specify a role that exists in the same database where
db.createRole()runs, you can either specify the role with the name of the role:Or you can specify the role with a document, as in:
To specify a role that exists in a different database, specify the role with a document.
The
db.createRole()method wraps thecreateRolecommand.
Behavior¶
Replica set¶
If run on a replica set, db.createRole() is executed using majority write concern by default.
Scope¶
Except for roles created in the admin database, a role can only
include privileges that apply to its database and can only inherit from
other roles in its database.
A role created in the admin database can include privileges that
apply to the admin database, other databases or to the
cluster resource, and can inherit from roles
in other databases as well as the admin database.
The db.createRole() method returns a duplicate role error
if the role already exists in the database.
Required Access¶
To create a role in a database, you must have:
- the
createRoleaction on that database resource. - the
grantRoleaction on that database to specify privileges for the new role as well as to specify roles to inherit from.
Built-in roles userAdmin and
userAdminAnyDatabase provide createRole and
grantRole actions on their respective resources.
Example¶
The following db.createRole() method creates the
myClusterwideAdmin role on the admin database: