本地mysql用Navicat链接报错 Authentication plugin 'caching_sha2_password' cannot be loaded
Posted CarolBright
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了本地mysql用Navicat链接报错 Authentication plugin 'caching_sha2_password' cannot be loaded相关的知识,希望对你有一定的参考价值。
一、报错原因:
mysql 8.0 默认使用 caching_sha2_password 身份验证机制:从原来的 mysql_native_password 更改为 caching_sha2_password,但是第三方客户端(如Navicat)暂不支持新的加密方式,故而报错。
二、解决方案:
双击打开 MySQL 8.0 Command Line Client;
输入密码登录账户;
依次执行以下指令:
use mysql; ALTER USER \'root\'@\'localhost\' IDENTIFIED WITH mysql_native_password BY \'yourpassword\'; # 修改 root 用户的密码 FLUSH PRIVILEGES; # 刷新MySQL的系统权限相关表,使修改即时生效 exit; # 退出
使用 Navicat 连接数据库。
图示如下:
资源链接:https://blog.csdn.net/Robin_star_/article/details/93242186
以上是关于本地mysql用Navicat链接报错 Authentication plugin 'caching_sha2_password' cannot be loaded的主要内容,如果未能解决你的问题,请参考以下文章
navicat报错2005 - Unknown MySQL server host 'localhost' 原因及解决方法
Navicat for MySQL无法连接本地的MySQL服务(因为本地没有启动SQL服务导致)