数据库
首页 > 数据库> > mysql8新版本安装注意事项及解决本地系统账户Strart the server和SQLyog客户端连接报 plugin caching_sha2_password could not be loa

mysql8新版本安装注意事项及解决本地系统账户Strart the server和SQLyog客户端连接报 plugin caching_sha2_password could not be loa

作者:互联网

mysql 安装包一路next安装,

到Apply Configuration,卡住在Start the server,原因是mysql8新版本的登录身份不对,需要进入服务,找到mysql80,然后属性,修改为本地系统账户。

然后重试,这样可以安装成功了。

 

本地dos窗口登录mysql , mysql -hlocalhost -uroot -proot -P3306

查看加密方式,select Host,User,plugin from mysql.user;

alter user root@localhost identified with mysql_native_password by '123456';

 

标签:sha2,SQLyog,plugin,mysql8,server,user,mysql,password
来源: https://www.cnblogs.com/oktokeep/p/16480055.html