MySql 8 You must reset your password using ALTER USER statement before executing this statement

You must reset your password using ALTER USER statement before executing this statement

最近安装mysql8版本时,遇到坑无数,第一无论输入啥,都提示此信息,意思是在执行此语句之前,必须使用alter user语句重置密码

MySql 8 You must reset your password using ALTER USER statement before executing this statement_第1张图片

查询网上使用此语句 alter user user() identified by “123qweR”;
但是提示 Your password does not satisfy the current policy requirements
意思就是密码过于简单,不符合密码设置的策略,看了一下有的人建议修改策略啥的,这里我get一个新的方法,直接将原来mysql的初始化密码修改一下后二位,因为他肯定满足密码策略,策略估计是大小写,字母特殊字符都必须含有
在这里插入图片描述去log文件中查看我的初始化密码,然后将一二个字母修改一下,我只是修改了后一位
在这里插入图片描述
alter user user() identified by “26SE>Z%UddNN”;
ok,但是这里我的外网工具还是连接不上mysql,是host地址没有开放,需要设置一下,
use mysql;
update user set host = ‘%’ where user = ‘root’;
flush privileges;

然后连接后发现还是不行,
这次工具连接报错为Client does not support authentication protocol requested by server…;

个人认为是root用户需要修改加密方式,所以还需要执行以下语句
use mysql;
alter user ‘root’@’%’ identified with mysql_native_password by ‘26SE>Z%UddNN’;
flush privileges;

最后大功告成!

你可能感兴趣的:(mysql)