På grund af din adgangskode. Du kan se password validate configuration metrics ved at bruge følgende forespørgsel i MySQL-klienten:
SHOW VARIABLES LIKE 'validate_password%';
Outputtet skal være sådan noget :
+--------------------------------------+-------+
| Variable_name | Value |
+--------------------------------------+-------+
| validate_password.check_user_name | ON |
| validate_password.dictionary_file | |
| validate_password.length | 6 |
| validate_password.mixed_case_count | 1 |
| validate_password.number_count | 1 |
| validate_password.policy | LOW |
| validate_password.special_char_count | 1 |
+--------------------------------------+-------+
så kan du indstille adgangskodepolitikniveauet lavere, for eksempel:
SET GLOBAL validate_password.length = 6;
SET GLOBAL validate_password.number_count = 0;
Tjek MySQL-dokumentationen .