远程连接数据库 出现 Client does not support authentication protocol requested by server的解决方法

本文介绍了如何在Ubuntu 20.04环境下,由于MySQL新加密方式导致的Navicat远程连接问题,通过修改用户密码策略,将caching_sha2_password更改为mysql_native_password来解决,包括操作步骤和必要命令。
摘要由CSDN通过智能技术生成

系统环境

阿里云主机。
Ubuntu:20.04
MySQL。

情况

想用 navicat 远程连接 MySQL 服务器,但是出现了 Client does not support authentication protocol requested by server。
问题的原因是使用了新的加密方式导致。

解决方法:修改 MySQL 的密码方式

进入 MySQL

mysql -uroot -p

选择 mysql 表

mysql> use mysql;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
mysql> select user,host,plugin from user where user='zhouyi';
+--------+------+-----------------------+
| user   | host | plugin                |
+--------+------+-----------------------+
| zhouyi | %    | caching_sha2_password |
+--------+------+-----------------------+
1 row in set (0.00 sec)

如上所示,使用 caching_sha_password。

更改

mysql> alter user 'zhouyi'@'%' identified by '这里是你的密码' password expire never;
Query OK, 0 rows affected (0.00 sec)

mysql> select user,host,plugin from user where user='zhouyi';
+--------+------+-----------------------+
| user   | host | plugin                |
+--------+------+-----------------------+
| zhouyi | %    | caching_sha2_password |
+--------+------+-----------------------+
1 row in set (0.00 sec)

mysql> alter user 'zhouyi'@'%' identified with mysql_native_password by '这里是你的密码';
Query OK, 0 rows affected (0.01 sec)

mysql> flush privileges;
Query OK, 0 rows affected (0.01 sec)

mysql> select user,host,plugin from user where user='zhouyi';
+--------+------+-----------------------+
| user   | host | plugin                |
+--------+------+-----------------------+
| zhouyi | %    | mysql_native_password |
+--------+------+-----------------------+
1 row in set (0.00 sec)

如上所示,密码改为了 native_password。
这样问题解决。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

努力的老周

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

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

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

打赏作者

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

抵扣说明:

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

余额充值