配置密码复杂性规则

启用密码复杂性规则并配置最小密码长度。

Redis 企业软件

Redis Enterprise Software 提供满足常见要求的可选密码复杂性规则。启用后,这些规则要求密码具有:

  • 至少 8 个字符
  • 至少一个大写字符
  • 至少一个小写字符
  • 至少一个数字
  • 至少一个特殊字符

这些要求反映了 v6.2.12 及更高版本。早期版本不支持将数字或特殊字符作为密码的第一个或最后一个字符。此限制已在 v6.2.12 中删除。

此外,密码:

  • 不能包含用户的电子邮件地址或电子邮件地址的反向地址。
  • 重复字符不能超过三个。

密码复杂性规则在创建新用户帐户和更改密码时应用。密码复杂性规则不适用于由外部身份提供商进行身份验证的账户。

启用密码复杂性规则

要启用密码复杂性规则,请使用以下方法之一:

  • 集群管理器 UI:

    1. 转到 Cluster > Security > Preferences,然后选择 Edit

    2. Password (密码) 部分中,启用 Complexity rules (复杂性规则)。

    3. 选择 Save (保存)。

  • 更新集群REST API 请求:

    PUT https://[host][:port]/v1/cluster
    { "password_complexity": true }
    

Change minimum password length

When password complexity rules are enabled, passwords must have at least 8 characters by default.

If you change the minimum password length, the new minimum is enforced for new users and when existing users change their passwords.

To change the minimum password length, use one of the following methods:

  • Cluster Manager UI:

    1. Go to Cluster > Security > Preferences.

    2. Click Edit.

    3. In the Password section, enable Complexity rules.

    4. Set the number of characters for Minimum password length.

      The minimum password length setting appears in the password section of the cluster security preferences screen when complexity rules are enabled.
    5. Click Save.

  • Update cluster REST API request:

    PUT https://[host][:port]/v1/cluster
    { "password_min_length": <integer between 8-256> }
    

Deactivate password complexity rules

To deactivate password complexity rules, use one of the following methods:

  • Cluster Manager UI:

    1. Go to Cluster > Security > Preferences, then select Edit.

    2. In the Password section, turn off Complexity rules.

    3. Select Save.

  • Update cluster REST API request:

    PUT https://[host][:port]/v1/cluster
    { "password_complexity": false }
    
RATE THIS PAGE
Back to top ↑