ChinaUnix.net
相关文章推荐:

qtp 55 client dost not support authentication protocol requested server

前面忘记说了,运行过程中还出现过上面那个title的错误.... 官方的说法是 MySQL 4.1 and up uses an authentication protocol based on a password hashing algorithm that is incompatible with that used by older clients. 解决办法是: UPDATE mysql.user SET Password = OLD_PASSWORD('newpwd') WHERE User = 'usrname'; update后还有重启下mysql服务,在运行程序就可以了 本文来自ChinaUnix博客,如果查看原...

by ubuntuer - MySQL文档中心 - 2009-08-28 15:18:38 阅读(1501) 回复(0)

相关讨论

#1251 - client does not support authentication protocol requested by server; consider upgrading MySQL client 认证方式为:cookie 为什末出现#1251错误啊? 望斑竹能解答,谢谢!

by juansiwei - MySQL - 2005-03-28 18:39:45 阅读(912) 回复(0)

烦人的问题:client does not support authentication protocol requested by server; consider upgrading MySQL client 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. ..... (看不太...

by yueming - BSD文档中心 - 2006-12-22 20:16:08 阅读(976) 回复(0)

来源: http://dev.mysql.com/doc/mysql/en/Old_client.html MySQL 4.1 and up uses an authentication protocol based on a password hashing algorithm that is incompatible with that used by older clients. If you upgrade the server to 4.1, attempts to connect to it with an older client may fail with the following message: shell> mysql client does not support authentication protocol requested by server;...

by xinxing - php文档中心 - 2004-12-10 09:09:37 阅读(1786) 回复(0)

perl 发邮件, 得到如题目中的信息。 这种问题是mail server的问题么? 不支持 protocol SMTPAUTHNONE ?? 用LOGIN, 也是同样的错误信息,authentication protocol LOGIN is not accepted by the server 请问还有其他可用的protocol 么?

by hoohoobjj - Perl - 2007-11-29 17:33:24 阅读(2161) 回复(7)

MySQL 4.1 以及后续版本由于加密算法改变,出现如下错误信息,client does not support authentication protocol requested by server; consider upgrading MySQL client要解决这个问题,可以使用以下任一方法,1) 升级所有的客户端程序,使用4.1.1或者更新的库;2) 当连接4.1以前的库时,使用先前存在的帐号;3) 为要使用先前版本的用户重新设置密码;这个可以用 SET PASSWORD 申明和 OLD_PASSWORD() 函数。(推荐)mys...

by eroclu - MySQL文档中心 - 2006-08-01 10:07:40 阅读(854) 回复(0)

底版本远程连接高版本mysql报ERROR 1251: client does not support authentication protocol requested by server; consider upgrading MySQL client,解决方法。 第一种 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; 本文来自C...

by 7717060 - MySQL文档中心 - 2009-08-08 22:48:54 阅读(1494) 回复(0)

[zdai@localhost zdai]$ ERROR 1251: client does not support authentication protocol requested by server; consider upgrading MySQL client 我的mysql是在windows下的,5.x。然后我在linux下想登陆,用户都添加好了。但登陆的时候出现如下错误。 linux里我是没root权限的,没法upgrading client了。不知道服务器端能不能关了authentication protocol 这个东东。

by bigapple2008 - MySQL - 2006-02-27 16:20:06 阅读(934) 回复(1)

各位,谁搞过Baccarat Deater client-server protocol 的实现?或者WEB协议的实现,不是用而是编写一个通用的协议.(用TCP/IP协议编写应用层的协议)

by napleon - C/C++ - 2005-03-08 12:00:55 阅读(936) 回复(0)

是不是我在服务器上缺少了什么东西啊,好象是协议相关的.环境是solaris8,各位高手指点一下

by fwizard - Solaris - 2005-09-10 08:42:07 阅读(1029) 回复(3)

出于工作的需要,今天写了一个服务程序,后来为了测试,还写了个客户端的程序.反正原理很简单,并且以后还可以套用.所以在这里存档. server ----------------------------------------------------- #include #include #include #include #include #include #include #include #include #include #define SERV_PORT 9970 #define LISTENQ 10 #define MAXDATASIZE 204800 int main(int argc, char **argv) { int listenf...

by pearma - HP文档中心 - 2005-11-17 22:24:41 阅读(1067) 回复(0)