码迷,mamicode.com
首页 > 数据库 > 详细

本地mysql用Navicat链接报错 Authentication plugin 'caching_sha2_password' cannot be loaded

时间:2020-07-23 22:14:14      阅读:90      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!