SqlYog 无法连接mysql8 问题的解决方法

SQLyog连接MySQL8出现错误2058的解决方法。留个记录。

use mysql;

select user,host from user where user=‘root’;

ALTER USER ‘root’@‘localhost’ IDENTIFIED WITH mysql_native_password BY ‘123456’;
flush privileges;

亲测可用!!!

你可能感兴趣的:(mysql,mysql)