问题记录Navicat Premium连接mysql-8.0.17时出现2059 - Authentication plugin 'caching_sha2_password’....错误
Posted waterbbro
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了问题记录Navicat Premium连接mysql-8.0.17时出现2059 - Authentication plugin 'caching_sha2_password’....错误相关的知识,希望对你有一定的参考价值。
问题描述:
Navicat Premium连接mysql-8.0.17时出现2059 - Authentication plugin ‘caching_sha2_password’ cannot be loaded:......错误
问题分析:
mysql8 之前的版本中加密规则是mysql_native_password,而在mysql8之后,加密规则是caching_sha2_password。
解决办法:
1.登陆数据库:mysql - u root -p;
2.切换数据库:use mysql;
3.修改加密方式:ALTER USER ‘root‘@‘localhost‘ IDENTIFIED BY ‘password‘ PASSWORD EXPIRE NEVER;
4.更新密码:ALTER USER ‘root‘@‘localhost‘ IDENTIFIED WITH mysql_native_password BY ‘自己的新密码‘;
5.刷新权限:FLUSH PRIVILEGES;
注:很多博客上都没有第3步,只有第4步,使得频繁报错,多亏了此博客。
以上是关于问题记录Navicat Premium连接mysql-8.0.17时出现2059 - Authentication plugin 'caching_sha2_password’....错误的主要内容,如果未能解决你的问题,请参考以下文章