Docs Menu

Docs HomeMongoDB Command Line Interface

mongocli ops-manager dbusers create

On this page

  • Syntax
  • Options
  • Inherited Options
  • Examples

Create a database user for your project.

mongocli ops-manager dbusers create [options]
Name
Type
Required
Description
--authDB
string
false
Authentication database name. (default "admin")
-h, --help
false
help for create
--mechanisms
strings
false
Authentication mechanism. Valid values: SCRAM-SHA-1|SCRAM-SHA-256 (default [SCRAM-SHA-1])
-p, --password
string
false
User’s password.
--projectId
string
false
Project ID to use. Overrides configuration file or environment variable settings.
--role
strings
false
User's roles and the databases or collections on which the roles apply.
-u, --username
string
true
Username for authenticating to MongoDB.
Name
Type
Required
Description
-P, --profile
string
false
Profile to use from your configuration file.
Create a user with readWriteAnyDatabase and clusterMonitor access
$ mongocli om dbuser create --username <username> --role readWriteAnyDatabase,clusterMonitor --mechanisms SCRAM-SHA-256 --projectId <projectId>
←  mongocli ops-manager dbusersmongocli ops-manager dbusers delete →
Share Feedback