mysql4.1以上版本连接时出现Client does not support authentication protocol问题解决办法
作者:bea
mysql4.1以上版本连接时出现Clientdoesnotsupportauthenticationprotocol问题解决办法 shell>mysql Clientdoesnotsupportauthenticationprotocolrequested byserver;considerupgradingMySQLclient 官方的说法是 MySQL4.1andupusesanauthenticationprotocolbasedonapasswordhashi
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;
上面红色的部分请按自己实际情况修改....
这样做后,连接就会正常了@!
有用 | 无用
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;
上面红色的部分请按自己实际情况修改....
这样做后,连接就会正常了@!
有用 | 无用
猜你喜欢
您可能感兴趣的文章:
- php的一个登录的类 [推荐]
- 对Session和Cookie的区分与解释
- PHP中cookies使用指南
- PHP中session使用方法详解
- PHP学习资料汇总与网址
- 在PHP世界中选择最合适的模板与使用方法
- PHP编码规范-php coding standard
- PHP操作文件方法问答
- 用PHP控制用户的浏览器--ob*函数的使用说明
- PHP中for循环语句的几种变型
- 使用TinyButStrong模板引擎来做WEB开发
- 使用 eAccelerator加速PHP代码的目的
- PHP的开发框架的现状和展望
- 用header 发送cookie的php代码
- PHP实现多服务器session共享之NFS共享的方法
- 用PHP实现多服务器共享SESSION数据的方法
- 不错的一篇面向对象的PHP开发模式(简写版)
- 推荐Discuz!5的PHP代码高亮显示与实现可运行代码
- Linux下进行MYSQL编程时插入中文乱码的解决方案