Navicat使用报2059错误的两种解决方案
作者:start.run
Navicat是一款流行的数据库管理工具,而MySQL则是其中的一种数据库软件,下面这篇文章主要给大家介绍了关于Navicat使用报2059错误的两种解决方案,需要的朋友可以参考下
发现问题:
该错误的原因是在MySQL8之前版本中加密规则是mysql_native_password,而在MySQL8以后的加密规则为caching_sha2_password。
解决此问题有两种方法,一种是更新navicat驱动来解决此问题,一种是将mysql用户登录的加密规则修改为mysql_native_password。此处采用第二种方式。
具体做法:
1、使用cmd的方式连接到MySQL数据库
2、设置密码永不过期
alter user 'root'@'localhost' identified by '密码' password expire never; alter user 'root'@'localhost' identified by 'root' password expire never;
3、设置加密规则为mysql_native_password
alter user 'root'@'localhost' identified with mysql_native_password by '密码'; alter user 'root'@'localhost' identified with mysql_native_password by 'root';
4、重新点击Navicat的连接测试发现连接成功了!
总结
到此这篇关于Navicat使用报2059错误的两种解决方案的文章就介绍到这了,更多相关Navicat报2059错误内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!