目录
SQLyog错误号码 plugin caching_sha2_password could not be loaded

use mysql

mysql> select Host,User,plugin from mysql.user;
本地连接:
alter user root@localhost identified with mysql_native_password by '123456';
FLUSH PRIVILEGES;
远程连接:
alter user root@'%' identified with mysql_native_password by '123456';
FLUSH PRIVILEGES;


转载:SQLyog错误号码 plugin caching_sha2_password could not be loaded_落月爱学习的博客-CSDN博客