Change Your Password and Custom Data
Overview
Users with appropriate privileges can change their own passwords andcustom data. Custom data
storesoptional user information.
Considerations
To generate a strong password for use in this procedure, you can use theopenssl
utility’s rand
command. For example, issue opensslrand
with the following options to create a base64-encoded string of 48pseudo-random bytes:
- openssl rand -base64 48
Prerequisites
To modify your own password and custom data, you must have privilegesthat grant changeOwnPassword
andchangeOwnCustomData
actions respectively on the user’s database.
Connect as a user with privileges to manage users and roles.
Connect to the mongod
or mongos
with privilegesto manage users and roles, such as a user withuserAdminAnyDatabase
role. The following procedure uses themyUserAdmin
created in Enable Access Control.
- mongo --port 27017 -u myUserAdmin -p --authenticationDatabase 'admin'
If you do not specify the password to the -p
command-line option, the mongo
shell prompts for thepassword.
Create a role with appropriate privileges.
In the admin
database, create
a newrole with changeOwnPassword
andchangeOwnCustomData
.
- use admin
- db.createRole(
- { role: "changeOwnPasswordCustomDataRole",
- privileges: [
- {
- resource: { db: "", collection: ""},
- actions: [ "changeOwnPassword", "changeOwnCustomData" ]
- }
- ],
- roles: []
- }
- )
Add a user with this role.
In the test
database, create
a new user withthe created "changeOwnPasswordCustomDataRole"
role. For example, the followingoperation creates a user with both the built-in role readWrite
andthe user-created "changeOwnPasswordCustomDataRole"
.
Tip
Starting in version 4.2 of the mongo
shell, you canuse the passwordPrompt()
method in conjunction withvarious user authentication/management methods/commands to promptfor the password instead of specifying the password directly in themethod/command call. However, you can still specify the passworddirectly as you would with earlier versions of themongo
shell.
- use test
- db.createUser(
- {
- user:"user123",
- pwd: passwordPrompt(), // or cleartext password
- roles:[ "readWrite", { role:"changeOwnPasswordCustomDataRole", db:"admin" } ]
- }
- )
To grant an existing user the new role, usedb.grantRolesToUser()
.
Procedure
Connect with the appropriate privileges.
Connect to the mongod
or mongos
as a user withappropriate privileges.
For example, the following operation connects to MongoDB asuser123
created in the Prerequisitessection.
- mongo --port 27017 -u user123 --authenticationDatabase 'test' -p
If you do not specify the password to the -p
command-line option, the mongo
shell prompts for thepassword.
To check that you have the privileges specified in thePrerequisites section as well as to see userinformation, use the usersInfo
command with theshowPrivileges
option.
Change your password and custom data.
Use the db.updateUser()
method to update the password andcustom data.
For example, the following operation changes the user’s password toKNlZmiaNUp0B
and custom data to { title: "Senior Manager" }
:
Tip
Starting in version 4.2 of the mongo
shell, you canuse the passwordPrompt()
method in conjunction withvarious user authentication/management methods/commands to promptfor the password instead of specifying the password directly in themethod/command call. However, you can still specify the passworddirectly as you would with earlier versions of themongo
shell.
- use test
- db.updateUser(
- "user123",
- {
- pwd: passwordPrompt(), // or cleartext password
- customData: { title: "Senior Manager" }
- }
- )
Enter the password when prompted.