ChinaUnix.net
相关文章推荐:

service nginx does not support chkconfig

[root@firewall init.d]# chkconfig --level 35 httpd on service httpd does not support chkconfig 一个服务如何才能做到支持chkconfig...?

by sunyeait - Linux论坛 - 2003-07-01 10:06:10 阅读(8675) 回复(5)

相关讨论

does MySQL support schema?

by SeeaMonster - MySQL - 2005-07-12 11:15:22 阅读(912) 回复(0)

does informix support schema?

by SeeaMonster - Informix - 2005-07-12 11:55:33 阅读(1411) 回复(3)

前面忘记说了,运行过程中还出现过上面那个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 阅读(1493) 回复(0)

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 阅读(850) 回复(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 阅读(1489) 回复(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 阅读(970) 回复(0)

same to the title if so ,anybody tell me the version info.i will download and install. now i have linux and win2003 on my machine, i wanna use grub, so ....

by Jade_King - Solaris - 2005-12-27 17:26:57 阅读(879) 回复(1)

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

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

kernel md module does not support 请教 我安装之后 ,运行init 5结果出来别的都ok 结果就这个failed

by sunzhi888 - Linux论坛 - 2005-05-08 09:05:48 阅读(469) 回复(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 阅读(911) 回复(0)