Install the mysql5.7rpm package, when changing the password, prompt error
This is due to the Mysql5.7 default password requirements for high strength, the password is too simple to pass. To solve this problem, the parameters involved are validate_password_policy and validate_password_length.
The validate_password_policy has the following values:
Policy |
Tests performed |
0 OrLOW |
Length |
1 OrMEDIUM |
Length; Numeric, lowercase/uppercase, and special characters |
2 OrSTRONG |
Length; Numeric, lowercase/uppercase, and special characters; Dictionary file |
0 is as long as the password length, 1 is required to meet the length, and must contain numbers, lowercase or uppercase, special characters, 2 is must meet the length, and must contain numbers, lowercase or uppercase, special characters, dictionary files. The default is 1. Validate_password_length is to set the password length.
So the solution is:
1. Set the password security level.
2. Set Password length
3. Change your password
mysql5.7 Your Password does not satisfy the current policy requirements problem resolution