Vanwege je wachtwoord. U kunt configuratiestatistieken voor wachtwoordvalidatie . zien met behulp van de volgende query in de MySQL-client:
SHOW VARIABLES LIKE 'validate_password%';
De uitvoer zou ongeveer zo moeten zijn:
+--------------------------------------+-------+
| 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 |
+--------------------------------------+-------+
dan kunt u het wachtwoordbeleidsniveau lager instellen, bijvoorbeeld:
SET GLOBAL validate_password.length = 6;
SET GLOBAL validate_password.number_count = 0;
Controleer de MySQL-documentatie .