-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathdb.changeUserPassword.txt
94 lines (64 loc) · 2.21 KB
/
db.changeUserPassword.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
=======================
db.changeUserPassword()
=======================
.. default-domain:: mongodb
.. contents:: On this page
:local:
:backlinks: none
:depth: 1
:class: singlecol
Definition
----------
.. method:: db.changeUserPassword(username, password)
Updates a user's password. Run the method in the database where the
user is defined, i.e. the database you :method:`created
<db.createUser()>` the user.
.. |dbcommand| replace:: :dbcommand:`updateUser` command
.. include:: /includes/fact-mongosh-shell-method-alt.rst
.. list-table::
:header-rows: 1
:widths: 20 20 80
* - Parameter
- Type
- Description
* - ``username``
- string
- The name of the user whose password you wish to change.
* - ``password``
- string
- The user's password. The value can be either:
- the user's password in cleartext string, or
- :method:`passwordPrompt()` to prompt for the user's password.
.. include:: /includes/extracts/4.2-changes-passwordPrompt.rst
* - ``writeConcern``
- document
- .. include:: /includes/fact-write-concern-spec-link.rst
Compatibility
-------------
This method is available in deployments hosted in the following
environments:
.. include:: /includes/fact-environments-no-atlas-support.rst
.. include:: /includes/fact-environments-onprem-only.rst
Required Access
---------------
.. include:: /includes/access-change-password.rst
Behavior
--------
.. |command| replace:: :method:`db.changeUserPassword()`
.. include:: /includes/fact-cleartext-passwords-tls.rst
Example
-------
The following operation changes the password of the user named
``accountUser`` in the ``products`` database to ``SOh3TbYhx8ypJPxmt1oOfL``:
.. tip::
.. include:: /includes/extracts/4.2-changes-passwordPrompt.rst
.. code-block:: javascript
use products
db.changeUserPassword("accountUser", passwordPrompt())
When prompted in :binary:`~bin.mongosh` for the password, enter
the new password.
You can also pass the new password directly to
:method:`db.changeUserPassword()`:
.. code-block:: javascript
use products
db.changeUserPassword("accountUser", "SOh3TbYhx8ypJPxmt1oOfL")