第三方的可以
这个需要解决下,帮忙顶。 顶上 有的电脑 就是不支持 你换5.7 就可以了 换了一种老的认证方式才行,官方应该没更新支持库 yifan09 发表于 2022-8-30 13:07
换了一种老的认证方式才行,官方应该没更新支持库
没问题的。
刚用8.0测试了一下,可以连接。
报错:Authentication plugin 'caching_sha2_password' cannot be loaded
然后做了如下操作:
执行命令
mysql -u root -p 连接数据库
use mysql;
select user,plugin from user where user='root';
可以看到当前用户的加密方式为caching_sha2_password
执行命令
alter user 'root'@'%' identified with mysql_native_password by '123456';
flush privileges;
能连接了。 好像是8.0.19以后的版本的mysq用户密码加密方式为caching_sha2_password
页:
1
[2]