MySQL 5.7 密码强度,必须含有0-9,a-z,A-Z以及“-”或“_”
https://dev.mysql.com/doc/refman/5.7/en/validate-password-options-variables.html
禁用密码安全策略(早起5.7版本可用,新版已经废弃这个选项)
# cat /etc/my.cnf | grep validate-password validate-password=OFF
新的方式修改策略与密码长度
mysql> set global validate_password_policy=0; mysql> set global validate_password_length=4; mysql> grant all privileges on test.* to 'test'@localhost identified by 'chen';
原文出处:Netkiller 系列 手札
本文作者:陈景峯
转载请与作者联系,同时请务必标明文章原始出处和作者信息及本声明。