MySQL5.7如果是RPM包安装,初次登录就需要改密码,方法如下:
mysql> alter user user() identified by ‘Abc123,./‘;
如果想关掉密码策略,可以在 my.cnf 文件里的 [mysqld] 段添加如下内容:
validate_password = off
MySQL5.7中的策略及设置
原文:https://www.cnblogs.com/bayue9/p/14088676.html