我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Authentication plugin ‘caching_sha2_password‘ cannot be loaded

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

Authentication plugin ‘caching_sha2_password‘ cannot be loaded

一、问题

        在连接远程用户时出现该错误 :Authentication plugin ‘caching_sha2_password‘ cannot be loaded

        原因是:mysql8 之前的版本中加密规则是mysql_native_password,而在mysql8之后,加密规则是caching_sha2_password。

二、解决方法

2.1 进入Mysql:

mysql -uroot -p 

2.2 修改账户密码加密规则并更新用户密码:

# 修改加密规则ALTER USER 'root'@'localhost' IDENTIFIED BY 'password' PASSWORD EXPIRE NEVER;# 更新一下用户的密码ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password';

2.3 刷新权限并重置密码

# 刷新权限(可以直接复制)flush privileges;

2.4、重置密码

#自定义密码alter user 'root'@'localhost' identified by 'dgdggdgdg';

重新打开软件,再次连接数据库即可

来源地址:https://blog.csdn.net/ZHY_ERIC/article/details/124470136

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Authentication plugin ‘caching_sha2_password‘ cannot be loaded

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

解决Authentication plugin ‘caching_sha2_password‘ cannot be loaded问题

报错原因 用图形化用户界面连接的MySQL8.0时, 报错:Authentication plugin ‘caching_sha2_password’ cannot be loaded MySQL8.0之前的版本中加密规则是mysql_na
2023-08-21

SQLyog连接MySQL8 异常2059-Authentication plugin 'caching_sha2_password' cannot be loaded解决方案

GPS平台、网站建设、软件开发、系统运维,找森大网络科技!https://cnsendnet.taobao.com来自森大科技官方博客http://www.cnsendblog.com/index.php/?p=990 今数据库更新到8.0的版本后,使用Dat
SQLyog连接MySQL8 异常2059-Authentication plugin 'caching_sha2_password' cannot be loaded解决方案
2018-12-10

2059-Authentication plugin‘caching_sha2_password‘cannot be loaded

2059-Authentication plugin’caching_sha2_password’cannot be loaded 原因 由于目前已有的客户端连接软件还不支持Mysql8新增加的加密方式:caching_sha2_pass
2023-08-18

navicat连接异常 authentication plugin 'caching_sha2_password' 问题解决

mysql 8.0 默认使用 caching_sha2_password 身份验证机制 —— 从原来的 mysql_native_password 更改为 caching_sha2_password。从 5.7 升级 8.0 版本的不会改变现有用户的身份验证方
navicat连接异常 authentication plugin 'caching_sha2_password' 问题解决
2020-08-11

远程连接MySQL错误“plugin caching_sha2_password could not be loaded”的解决办法sql连接乱码

今天在阿里云租了一个服务器,当我用sqlyog远程连接mysql时,报了plugin caching_sha2_password could not be loaded错,即无法加载插件缓存sha2密码,但是我在cmd窗口就可以访问,在网上
2023-08-16

连接 mysql 报错 ERROR 2059 (HY000): Authentication plugin 'caching_sha2_password'

今天在测试mysql 8.0 的时候,从远端连接到mysql发现了这样的一个问题# mysql -h10.254.73.103ERROR 2059 (HY000): Authentication plugin "caching_sha2_password" c
连接 mysql 报错 ERROR 2059 (HY000): Authentication plugin 'caching_sha2_password'
2015-06-25

ORA-26016: Virtual column string in table string.string cannot be loaded by direct path ORACLE 报错 故障

文档解释ORA-26016: Virtual column string in table string.string cannot be loaded by direct pathCause: You attempted to load
ORA-26016: Virtual column string in table string.string cannot be loaded by direct path ORACLE 报错 故障
2023-11-05

ORA-15472: volume library cannot be loaded. Platform may not support volume creation. ORACLE 报错 故障修复

文档解释ORA-15472: volume library cannot be loaded. Platform may not support volume creation.Cause: The volume library
ORA-15472: volume library cannot be loaded. Platform may not support volume creation. ORACLE 报错 故障修复
2023-11-05

ORA-13655: The directive document contains a syntax error and cannot be loaded. ORACLE 报错 故障修复 远程处理

文档解释ORA-13655: The directive document contains a syntax error and cannot be loaded.Cause: An attempt was made to load
ORA-13655: The directive document contains a syntax error and cannot be loaded. ORACLE 报错 故障修复 远程处理
2023-11-04

编程热搜

目录