Skip to content

Commit 2c82fc9

Browse files
committed
DOC-5737 Updated user login security preferences and unlock instructions and screenshots for RS 7.22
1 parent 5f1c0b8 commit 2c82fc9

File tree

3 files changed

+51
-22
lines changed

3 files changed

+51
-22
lines changed

content/operate/rs/security/access-control/manage-users/login-lockout.md

Lines changed: 51 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -128,52 +128,73 @@ To change the amount of time that the user account is locked after excessive fai
128128
129129
### Unlock locked user accounts
130130
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+
131138
To unlock a user account in the Cluster Manager UI:
132139
133140
1. Go to **Access Control > Users**. Locked users have a "User is locked out" label:
134141
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">
136143
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:
138145
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">
140147
141148
1. In the **Reset user password** dialog, enter a new password for the user:
142149
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">
144151
145152
1. Select **Save** to reset the user's password and unlock their account.
146153

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:
148157

149158
```sh
150159
rladmin cluster reset_password <user_email>
151160
```
152161

162+
-tab-sep-
163+
153164
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" >}}):
154165

155166
```sh
156167
PUT /v1/users
157168
{"password": "<new_password>"}
158169
```
159170

171+
{{< /multitabs >}}
172+
160173
### Turn off login lockout
161174

162175
To turn off user login lockout and allow unlimited login attempts, use one of the following methods:
163176

164-
- Cluster Manager UI:
177+
{{< multitabs id="turn-off-login-lockout"
178+
tab1="Cluster Manager UI"
179+
tab2="rladmin" >}}
165180

166-
1. Go to **Cluster > Security > Preferences**, then select **Edit**.
181+
To turn off user login lockout using the Cluster Manager UI:
167182

168-
1. Clear the **Lockout threshold** checkbox.
183+
1. Go to **Cluster > Security > Preferences**, then select **Edit**.
169184

170-
1. Select **Save**.
185+
1. Clear the **Lockout threshold** checkbox.
171186

172-
- [`rladmin tune cluster`]({{< relref "/operate/rs/references/cli-utilities/rladmin/tune#tune-cluster" >}}):
187+
1. Select **Save**.
173188

174-
```sh
175-
rladmin tune cluster login_lockout_threshold 0
176-
```
189+
-tab-sep-
190+
191+
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 >}}
177198

178199
The cluster settings show `login_lockout_threshold: disabled`.
179200

@@ -183,18 +204,26 @@ The Redis Enterprise Cluster Manager UI supports session timeouts. By default, u
183204

184205
To customize the session timeout, use one of the following methods:
185206

186-
- Cluster Manager UI:
207+
{{< multitabs id="config-session-timeout"
208+
tab1="Cluster Manager UI"
209+
tab2="rladmin" >}}
187210

188-
1. Go to **Cluster > Security > Preferences**, then select **Edit**.
211+
To configure the session timeout using the Cluster Manager UI:
189212

190-
1. For **Session timeout**, select minutes or hours from the list and enter the timeout value.
213+
1. Go to **Cluster > Security > Preferences**, then select **Edit**.
191214

192-
1. Select **Save**.
215+
1. For **Session timeout**, select minutes or hours from the list and enter the timeout value.
193216

194-
- [`rladmin cluster config`]({{< relref "/operate/rs/references/cli-utilities/rladmin/cluster/config" >}}):
217+
1. Select **Save**.
195218

196-
```sh
197-
rladmin cluster config cm_session_timeout_minutes <number_of_min>
198-
```
219+
-tab-sep-
220+
221+
To configure the session timeout using `rladmin`, run the [`rladmin cluster config`]({{< relref "/operate/rs/references/cli-utilities/rladmin/cluster/config" >}}) command:
222+
223+
```sh
224+
rladmin cluster config cm_session_timeout_minutes <number_of_min>
225+
```
226+
227+
The `<number_of_min>` is the number of minutes after which sessions will time out.
199228

200-
The `<number_of_min>` is the number of minutes after which sessions will time out.
229+
{{< /multitabs >}}
44.7 KB
Loading
46.3 KB
Loading

0 commit comments

Comments
 (0)