Navicat Premium 连接MySQL数据库出现Authentication plugin 'caching_sha2_password' cannot be loaded的解
Posted feihusurfer
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Navicat Premium 连接MySQL数据库出现Authentication plugin 'caching_sha2_password' cannot be loaded的解相关的知识,希望对你有一定的参考价值。
1、运行cmd,目录定位到mysql的安装目录“C:\\Program Files\\MySQL\\MySQL Server 8.0\\bin”
2、运行mysql
3、运行如下的两个命令
ALTER USER ‘root‘@‘localhost‘ IDENTIFIED BY ‘password‘ PASSWORD EXPIRE NEVER; ALTER USER ‘root‘@‘localhost‘ IDENTIFIED WITH mysql_native_password BY ‘password‘;
4、运行如下指令刷新密码,并更新密码
FLUSH PRIVILEGES; alter user ‘root‘@‘localhost‘ identified by ‘新密码‘;
5、再次连接就可以了
以上是关于Navicat Premium 连接MySQL数据库出现Authentication plugin 'caching_sha2_password' cannot be loaded的解的主要内容,如果未能解决你的问题,请参考以下文章
navicat premium 的使用——navicat 连接MySQL数据库
MySQLmac环境下使用navicat premium连接mysql乱码问题