You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/operate/rs/security/access-control/manage-users/login-lockout.md
+51-22Lines changed: 51 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -128,52 +128,73 @@ To change the amount of time that the user account is locked after excessive fai
128
128
129
129
### Unlock locked user accounts
130
130
131
+
To unlock a locked user account as an admin, use one of the following methods:
132
+
133
+
{{< multitabs id="unlock-users"
134
+
tab1="Cluster Manager UI"
135
+
tab2="rladmin"
136
+
tab3="REST API" >}}
137
+
131
138
To unlock a user account in the Cluster Manager UI:
132
139
133
140
1. Go to **Access Control > Users**. Locked users have a "User is locked out" label:
134
141
135
-
{{<image filename="images/rs/screenshots/access-control/users-locked-out.png" alt="The Access Control > Users configuration screen in the Cluster Manager UI" >}}
142
+
<img src="../../../../../../images/rs/screenshots/access-control/7-22-updates/users-locked-out.png" alt="The Access Control > Users configuration screen in the Cluster Manager UI">
136
143
137
-
1. Point to the user you want to unlock, then click **Reset to unlock**:
144
+
1. Point to the "User is locked out" label, then click **Reset to unlock** when it appears:
138
145
139
-
{{<image filename="images/rs/screenshots/access-control/users-reset-to-unlock.png" alt="Reset to unlock button appears when you point to a locked user in the list" >}}
146
+
<img src="../../../../../../images/rs/screenshots/access-control/7-22-updates/users-reset-to-unlock.png" alt="Reset to unlock button appears when you point to a locked user in the list">
140
147
141
148
1. In the **Reset user password** dialog, enter a new password for the user:
142
149
143
-
{{<image filename="images/rs/screenshots/access-control/users-reset-user-password-dialog.png" alt="Reset user password dialog" >}}
150
+
<img src="../../../../../../images/rs/screenshots/access-control/users-reset-user-password-dialog.png" alt="Reset user password dialog">
144
151
145
152
1. Select **Save** to reset the user's password and unlock their account.
146
153
147
-
To unlock a user account or reset a user password with `rladmin`, run:
154
+
-tab-sep-
155
+
156
+
To unlock a user account or reset a user password with `rladmin`, run the [`rladmin cluster reset_password`]({{<relref "/operate/rs/references/cli-utilities/rladmin/cluster/reset_password">}}) command:
148
157
149
158
```sh
150
159
rladmin cluster reset_password <user_email>
151
160
```
152
161
162
+
-tab-sep-
163
+
153
164
To unlock a user account or reset a user password with the REST API, use [`PUT /v1/users`]({{< relref "/operate/rs/references/rest-api/requests/users#put-user">}}):
154
165
155
166
```sh
156
167
PUT /v1/users
157
168
{"password": "<new_password>"}
158
169
```
159
170
171
+
{{< /multitabs >}}
172
+
160
173
### Turn off login lockout
161
174
162
175
To turn off user login lockout and allow unlimited login attempts, use one of the following methods:
163
176
164
-
- Cluster Manager UI:
177
+
{{< multitabs id="turn-off-login-lockout"
178
+
tab1="Cluster Manager UI"
179
+
tab2="rladmin">}}
165
180
166
-
1. Go to **Cluster > Security > Preferences**, thenselect**Edit**.
181
+
To turn off user login lockout using the Cluster Manager UI:
167
182
168
-
1. Clear the **Lockout threshold** checkbox.
183
+
1. Go to **Cluster > Security > Preferences**, thenselect**Edit**.
To turn off user login lockout using `rladmin`, run the [`rladmin tune cluster`]({{< relref "/operate/rs/references/cli-utilities/rladmin/tune#tune-cluster">}}) command:
192
+
193
+
```sh
194
+
rladmin tune cluster login_lockout_threshold 0
195
+
```
196
+
197
+
{{< /multitabs >}}
177
198
178
199
The cluster settings show `login_lockout_threshold: disabled`.
179
200
@@ -183,18 +204,26 @@ The Redis Enterprise Cluster Manager UI supports session timeouts. By default, u
183
204
184
205
To customize the session timeout, use one of the following methods:
185
206
186
-
- Cluster Manager UI:
207
+
{{< multitabs id="config-session-timeout"
208
+
tab1="Cluster Manager UI"
209
+
tab2="rladmin">}}
187
210
188
-
1. Go to **Cluster > Security > Preferences**, thenselect**Edit**.
211
+
To configure the session timeout using the Cluster Manager UI:
189
212
190
-
1. For **Session timeout**, selectminutes or hours from the list and enter the timeout value.
213
+
1. Go to **Cluster > Security > Preferences**, thenselect**Edit**.
191
214
192
-
1. Select**Save**.
215
+
1. For**Session timeout**, selectminutes or hours from the list and enter the timeout value.
To configure the session timeout using `rladmin`, run the [`rladmin cluster config`]({{< relref "/operate/rs/references/cli-utilities/rladmin/cluster/config">}}) command:
0 commit comments