【已解决】1251 - Client does not support authentication protocol requested by server; consider upgrading

远程连接docker容器中的mysql8.0数据库时出现连接不上


报错信息

1251 - Client does not support authentication protocol requested by server; consider upgrading MySQL client

在这里插入图片描述


👀1. 场景:

远程连接docker容器中的mysql8.0数据库时出现连接不上,mysql8.0版本之前没有该问题.


👀2. 原因分析:

出现1251的主要原因是由于mysql版本的问题mysql8.0版本,与mysql8.0以下版本的加密方式不同,导致错误产生。

  • MySql 8.0.11 换了新的身份验证插件(caching_sha2_password),
  • 而原来的身份验证插件为(mysql_native_password)。

​ 而客户端工具Navicat Premium12 中找不到新的身份验证插件(caching_sha2_password),因此报上面的错,所以我们将mysql用户使用的 登录密码加密规则还原成 mysql_native_password,即可登陆成功。


🚀3. 解决:

3.1 方法一

修改root加密方式

​ 1) 查看root或其他用户信息的加密方式

[root@centos7 ~]# mysql -u root -p  #登陆mysql
mysql> use mysql;	# 切换mysql数据库
mysql> select user,plugin from user where user='root';  #查看root的加密方式

在这里插入图片描述

​ 2) 改变加密方式

alter user 'root'@'%' identified with mysql_native_password by '123456';

在这里插入图片描述

mysql> select user,plugin from user where user='root';

在这里插入图片描述

通过上面两步,即可解决问题

在这里插入图片描述


3.2 方法二

添加用户,同时设置登陆加密方式为mysql_native_password,并且给它远程访问权限,完成后这个用户也可以访问.

添加远程登录用户
CREATE USER 'mjh'@'%' IDENTIFIED WITH mysql_native_password BY '123456';
GRANT ALL PRIVILEGES ON *.* TO 'mjh'@'%';

  • 20
    点赞
  • 58
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 5
    评论
引用\[1\]和\[2\]都提到了错误信息"1251 - Client does not support authentication protocol requested by server; consider upgrading MySQL client",这是一个与MySQL客户端连接相关的错误。这个错误通常是由于MySQL服务器使用了较新的身份验证协议,而客户端使用的MySQL版本较旧所导致的。 解决这个问题的方法是升级MySQL客户端。你可以下载并安装最新版本的MySQL客户端,以确保它支持服务器所要求的身份验证协议。升级后,你应该能够成功连接到MySQL服务器。 另外,你还可以尝试在连接MySQL服务器时指定正确的身份验证协议。你可以在连接字符串中添加"auth_plugin"参数,并将其设置为服务器所要求的身份验证协议。这样,即使你的MySQL客户端版本较旧,也可以成功连接到服务器。 总结起来,要解决"1251 - Client does not support authentication protocol requested by server; consider upgrading MySQL client"错误,你可以选择升级MySQL客户端或在连接字符串中指定正确的身份验证协议。这样就能够成功连接到MySQL服务器了。 #### 引用[.reference_title] - *1* [【已解决1251 - Client does not support authentication protocol requested by serverconsider ...](https://blog.csdn.net/mjh1667002013/article/details/127603034)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item] - *2* [MySQL client does not support authentication protocol requested by server问题解决](https://blog.csdn.net/qq_38974638/article/details/114937862)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item] - *3* [Mysql 解决1251- Client does not support authentication protocol requested by server...的问题](https://blog.csdn.net/pengfeng111833/article/details/124399404)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

小满@

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值