运维系列:远程连接MySQL错误“plugin caching_sha2_password could not be loaded”的解决办法sql连接乱码
远程连接MySQL错误“plugin caching_sha2_password could not be loaded”的解决办法sql连接乱码
远程连接MySQL错误“plugin caching_sha2_password could not be loaded”的解决办法sql连接乱码
今天在阿里云租了一个服务器,当我用sqlyog
远程连接mysql
时,报了plugin caching_sha2_password could not be loaded
错,即无法加载插件缓存sha2密码
,但是我在cmd窗口
就可以访问,在网上找了很多解决方法都没有解决,最后找到了原因。在MySQL 8.0
中,caching_sha2_password
是默认的身份验证插件,而不是mysql_native_password
,服务器可以正常连接,本地cmd
窗口 mysql -hxx.xx.xx.xx -P3306 -uroot -pRoot123
. 可以正常连接,所以是我的sqlyog版本
太旧了。