# 分号不能少不然会出现# mysql> # 而不会出现类似Query OK的字符set global 常见安全策略参数=安全策略值;
1
2
3
4
(2)修改完可以看一下:
show variables like 'validate%';
1
3.改完密码策略,就可以根据自己修改的策略,更改匹配策略的MySQL登录密码了
--修改密码
alter user 'root'@'localhost' identified by '满足策略的密码';
--按mysql_native_password加密方式修改密码
alter user 'root'@'localhost' identified with mysql_native_password by '满足策略的密码';