mysql authentication_string更改密码不成功的问题

最近新买了电脑,再重新安装mysql过程中,发现user字段没有了password字段,update root密码失败,发现最新版本更新为authentication_string,然后update user set authentication_string=‘123456’ where user=‘root’;
免登录之后发现authentication_string已变为123456,然而去除免密重启之后一直1045,后来发现没有用到mysql的加密函数,实际应该使用update user set authentication_string=password(‘123456’) where user=‘root’;调用mysql的password函数。

mysql authentication_string更改密码不成功的问题_第1张图片

你可能感兴趣的:(mysql)