Linux下MySQL 连接出现 Authentication plugin ‘caching_sha2_password‘ cannot be loaded

avatar
作者
筋斗云
阅读量:0

很多用户在使用Navicat Premium 12连接MySQL数据库时会出现Authentication plugin ‘caching_sha2_password’ cannot be loaded的错误。

出现这个原因是mysql8 之前的版本中加密规则是mysql_native_password,而在mysql8之后,加密规则是caching_sha2_password, 解决问题方法有两种,一种是升级navicat驱动,一种是把mysql用户登录密码加密规则还原成mysql_native_password.

mysql -u root -p password #登录mysql  ALTER USER 'root'@'localhost' IDENTIFIED BY '你的密码' PASSWORD EXPIRE NEVER;   #修改加密规则    ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '你的密码';   #更新一下用户的密码   FLUSH PRIVILEGES;   #刷新权限   

如果是linux系统的话要将localhost换成%在这里插入图片描述

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!