本文主要是介绍navicat链接centos7数据库失败Authentication plugin ‘caching_sha2_password‘ cannot be loaded: dlopen(../Frame,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
重新配置云上数据库
mysql -u root -p
use mysql;
select user, host, plugin, authentication_string from user\G;
ALTER USER ‘root’@’%’ IDENTIFIED WITH mysql_native_password BY ‘你的密码’;
登陆云更改端口
firewall-cmd --zone=public --add-port=3306/tcp --permanent
这篇关于navicat链接centos7数据库失败Authentication plugin ‘caching_sha2_password‘ cannot be loaded: dlopen(../Frame的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!