标签:http details inf exit ide 双击 star line 加密
一、报错原因:
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
标签:http details inf exit ide 双击 star line 加密
原文地址:https://www.cnblogs.com/bright-carol/p/13367724.html