Configuring a Password Policy

You can configure a robust password policy (including rules for password expiration, reuse, and complexity) by logging into your account at support.singlestore.com and requesting support for this feature.

Password Expiration

password_expiration_seconds: The time in seconds before a password expires. The default value is 0, which indicates that passwords will never expire. expire_root_password: Specifies whether the root password can expire. The default value is OFF. When set to OFF, the password_expiration_seconds duration does not apply to the root password. If set to ON, the root password will expire after the password_expiration_seconds duration is reached.

Password Reuse

password_history_count: Restricts the reuse of previous user passwords. This variable is the number of previous passwords per user that SingleStore will store and disallow from reuse.

SingleStore will disallow setting a user account’s password to one of the last password_history_count number of passwords for that user. The count includes the current password. For example, if set to 2, setting a user’s password to its current password or the last password before the current password is disallowed. The default value is 0, which indicates that any previous password can be reused. The maximum is 10.

Password Complexity

These variables control password complexity requirements. For each variable, the default value is 0 (disabled) and the accepted values are integers from 0 to 100.

password_min_length: The minimum number of characters required.

password_min_uppercase_chars: The minimum number of uppercase characters required.

password_min_lowercase_chars: The minimum number of lowercase characters required.

password_min_numeric_chars: The minimum number of numeric digit characters required.

password_min_special_chars: The minimum number of special (non-alphanumeric) characters required.

password_max_consec_sequential_chars: The maximum number of consecutive characters allowed. For example, if set to 3, passwords with a 4-letter sequence or longer (e.g 1234 or abcd) are disallowed.

password_max_consec_repeat_chars: The maximum number of consecutive repeated characters allowed. For example, if set to 3, passwords with 4 or more consecutive repeated characters (e.g., aaaa or 1111) are disallowed.

When a user enters a new password, if the password does not meet the complexity policy, the following error message is returned:

Error: password does not meet the requirements specified for <variable> in your password complexity policy. Password not changed.

Example Password Complexity Usage

The following stored procedure (you can also use individual SET statements in the command line) will create a password complexity policy where passwords must:

  • be at least 12 characters long

  • include at least one uppercase character

  • include at least one lowercase character

  • include at least one numeric character

  • include at least one special character

CREATE DATABASE db_security
USE db_security
DELIMITER //
CREATE OR REPLACE PROCEDURE set_password_complexity_policy() AS
BEGIN
SET GLOBAL password_min_length=12;
SET GLOBAL password_min_uppercase_chars=1;
SET GLOBAL password_min_lowercase_chars=1;
SET GLOBAL password_min_numeric_chars=1;
SET GLOBAL password_min_special_chars=1;
END
//
DELIMITER ;
CALL set_password_complexity_policy();

Password Complexity and Existing Passwords

When changes are made to the password complexity policy, existing passwords are not checked. The policy will only be applied to new or changed passwords.

Last modified: November 22, 2022

Was this article helpful?