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

时间:2023-11-18 06:10:15 

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; 

上面红色的部分请按自己实际情况修改.... 
这样做后,连接就会正常了@!

标签:mysql4.1以上版本连接时出现Client,does,not,support,authentication,protocol问题解决办法
0
投稿

猜你喜欢

  • thinkphp5修改view到根目录实例方法

    2024-05-03 15:51:58
  • python shapely.geometry.polygon任意两个四边形的IOU计算实例

    2021-09-23 03:19:46
  • python 保存float类型的小数的位数方法

    2021-06-28 05:44:12
  • Centos7下源码安装Python3 及shell 脚本自动安装Python3的教程

    2023-01-11 13:45:04
  • PyTorch中的Variable变量详解

    2023-02-19 18:48:47
  • ubuntu系统下使用pm2设置nodejs开机自启动的方法

    2023-10-02 22:23:16
  • python import 上级目录的导入

    2021-09-13 00:54:29
  • php用header函数实现301跳转代码实例

    2023-10-08 11:29:59
  • asp如何对数组显示和排序?

    2009-11-20 18:30:00
  • 深入浅出分析Python装饰器用法

    2022-10-25 16:49:02
  • 全局字体最佳实践

    2009-08-13 14:37:00
  • 解决Python二维数组赋值问题

    2022-05-23 04:25:21
  • python的numpy模块实现逻辑回归模型

    2022-10-01 07:05:59
  • python-pymysql如何实现更新mysql表中任意字段数据

    2024-01-19 17:35:01
  • 超详细mysql left join,right join,inner join用法分析

    2024-01-22 00:21:05
  • 支持鼠标拖拽的简单目录树代码

    2011-07-01 12:34:09
  • Python实现双轴组合图表柱状图和折线图的具体流程

    2021-08-24 03:23:33
  • Mysql 插入中文及中文查询 (修改+调试)

    2024-01-21 23:52:42
  • SQL Server命令行导数据的2种方式

    2010-07-26 14:48:00
  • 使用mysqldump导入数据和mysqldump增量备份(mysqldump使用方法)

    2024-01-23 15:44:43
  • asp之家 网络编程 m.aspxhome.com