标签:variable spec number file root err oba use MIXED
报错如下:
ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
1
临时修改方法
# mysql -uroot -ppassw0rd 
mysql> SHOW VARIABLES LIKE ‘validate_password%‘;
+--------------------------------------+--------+
| Variable_name                        | Value  |
+--------------------------------------+--------+
| validate_password_check_user_name    | OFF    |
| validate_password_dictionary_file    |        |
| validate_password_length             | 4      |
| validate_password_mixed_case_count   | 1      |
| validate_password_number_count       | 1      |
| validate_password_policy             | MEDIUM |
| validate_password_special_char_count | 1      |
+--------------------------------------+--------+
7 rows in set (0.00 sec)
mysql> set global validate_password_policy=0;  
Query OK, 0 rows affected (0.00 sec)
mysql> set global validate_password_length=4; 
Query OK, 0 rows affected (0.00 sec)
mysql> \q
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
修改配置文件
[mysqld]
validate_password_policy=LOW
标签:variable spec number file root err oba use MIXED
原文地址:https://www.cnblogs.com/Gbeniot/p/12598869.html