5.8 MySQL:DBA管理员:使用客户端连接本地mysql,报错:1251- Client does not support authentication protocol requested by server;consider upgrading Mysql client。
5.8 MySQL:DBA管理员:使用客户端连接本地mysql,报错:1251- Client does not support authentication protocol requested by server;consider upgrading Mysql client。
最终解决方法:更换一个支持的管理工具。
主要原因是MySQL服务器要求的认证插件版本与客户端不一致造成的!
我们打开mysql命令行输入如下命令,查看系统用户对应的认证插件:
mysql8 之前的版本中加密规则是mysql_native_password,而在mysql8之后,加密规则是caching_sha2_password
查看:select host,plugin, user from user;
host为 % 表示不限制ip localhost表示本机使用
解决方法:将root的plugin改成mysql_native_password。
ALTER USER 'root' @'%' IDENTIFIED WITH mysql_native_password BY '密码';
使用mysql_native_password对新密码进行编码。
flush privileges;
但是修改失败:
强制修改(此方法不可取,因为后面会影响远程连接,此次实验中的数据库版本为MySQL8.0.29):
UPDATE `mysql`.`user` SET `plugin` = 'mysql_native_password' WHERE `Host` = '%' AND `User` = 'root'
问题又来了,连接不上了,因为1 factor authentication method does not match against authentication policy. Please refer @@authentication_policy system variable.
1因素认证方法与认证策略不匹配。 请参考@@authentication_policy系统变量。
解决:更换一个高版本(支持caching_sh2_password)就可以连接了。
相关:
3.1 Zabbix5.0: 问题处理:zabbix server is not running: the information displayed may not be current!
http://www.zh-cjh.com/yunweijiankong/727.html
MySQL(列表、list、全)mysqllist
http://www.zh-cjh.com/wenzhangguilei/2503.html
文章归类、所有文章列表、LISTLIST
http://www.zh-cjh.com/wangzhangonggao/2195.html
2、本资源基本为原创,部分来源其他付费资源平台或互联网收集,如有侵权请联系及时处理。
3、本站大部分文章的截图来源实验测试环境,请不要在生产环境中随意模仿,以免带来灾难性后果。
转载请保留出处: www.zh-cjh.com珠海陈坚浩博客 » 5.8 MySQL:DBA管理员:使用客户端连接本地mysql,报错:1251- Client does not support authentication protocol requested by server;consider upgrading Mysql client。
作者: cjh
手机扫一扫,手机上查看此文章: |
一切源于价值!
其他 模板文件不存在: ./template/plugins/comment/pc/index.htm