返回顶部
首页 > 资讯 > 数据库 >MYSQL(解决方法):Client does not support authentication(转)
  • 598
分享到

MYSQL(解决方法):Client does not support authentication(转)

2024-04-02 19:04:59 598人浏览 安东尼
摘要

Mysql(解决方法):Client does not support authentication(转)[@more@]mysql4.1以上版本连接时出现Client does not support a

Mysql(解决方法):Client does not support authentication(转)[@more@]

mysql4.1以上版本连接时出现Client does not support authentication protocol问题解决办法

shell> mysql

Client does not support authentication protocol requested

by server; consider upgrading MySQL client

官方的说法是

MySQL 4.1 and up uses an authentication protocol based on a passWord hashing alGorithm that is incompatible with that used by older clients. .....

如果你升级mysql到4.1以上版本后遇到以上问题,请先确定你的mysql client 是4.1或者更高版本.(windows下有问题你就直接跳到下面看解决方法了,因为MYSQL 在WINDOWS是client和server一起装上了的)

请使用以下两种方法之一

其一:

mysql> SET PASSWORD FOR

-> 'some_user'@'some_host' = OLD_PASSWORD('newpwd');

其二:

mysql> UPDATE mysql.user SET Password = OLD_PASSWORD('newpwd')

-> WHERE Host = 'some_host' AND User = 'some_user';

mysql> FLUSH PRIVILEGES;

上面的部分请按自己实际情况修改....

这样做后,连接就会正常了@
您可能感兴趣的文档:

--结束END--

本文标题: MYSQL(解决方法):Client does not support authentication(转)

本文链接: https://www.lsjlt.com/news/49978.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作