更改mysql密码后登录不上

mysql5.8然后navicat登录不上但是myqsl-workbench能上于是在workbench里更改了密码命令如下但是就登录不上root12345678这样就登录不上了求大佬路过帮帮忙">安装了mysql5.8,然后navicat登录不上,但是myqsl workbench能上,于是在workbench里更改了密码,命令如下,但是就登录不上root,12345678这样就登录不上了!!!求大佬路过帮帮忙!

use mysql;

select user,host,authentication_string from user;

update user set authentication_string='12345678' where user='root' and host='localhost';


错误截图:

回答

(5.7.11 或者以后)> update user set authentication_string=password("123456") where user="root";

————————————————

版权声明:本文为CSDN博主「csdn-华仔」的原创文章,遵循CC 4.0 by-sa版权协议,转载请附上原文出处链接及本声明。

原文链接:https://blog.csdn.net/hello_world_qwp/article/details/80346904

以上是 更改mysql密码后登录不上 的全部内容, 来源链接: utcz.com/a/39116.html

回到顶部