使用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
mysql -u root -p
查看数据使用插件内容
select user,host,plugin,authentication_string from user;
修改插件
alter user 'root'@'localhost' identified with mysql_native_password by '123456';
查看数据插件是否修改为“mysql_native_password”
select user,host,plugin,authentication_string from user;
navicat premium 中创建链接,输入root,密码为 123456 ,测试链接通过。