标签:
第一篇:PHP5.3开始使用MySqlND作为默认的MySql访问驱动,而且从这个版本开始将不再支持使用旧的用户接口链接Mysql了,你可能会看到类似的提示:
#2000 - mysqlnd cannot connect to MySQL 4.1+ using old authentication
解决问题的方法不是调整PHP,而是检查你的Mysql,你需要确保两件事:
解决问题2的方法是重新设置账户的密码,并确保使用的标准Password()函数设置账户密码,相关指令如下:
-- 选择系统库USE `mysql`-- 显示当前的用户和密码,注意新的的密码格式应该是41位的加密字符,老的是16位的SELECT `user`,`password` from `user`;-- 更新指定的用户的密码,注意使用函数 password()-- 有时针对一些特殊需要,你可以使用old_password()函数来建立一个或几个向下兼容的数据库账户UPDATE `user` SET `password`=password(‘newpassword‘) WHERE `user`=‘UserName‘;-- 刷新MySql权限库FLUSH PRIVILEGES;-- 最后别忘记了,MySql的命令行连接方式是:MySql -u username@host -p password
第二篇:最近开发环境升级到了 php 5.3.2, 链接 remote mysql 却发生了错误:
connection failed:SQLSTATE[HY000] [2000] mysqlnd cannot connect to MySQL 4.1+ using old authentication
remote 的 mysql db my.cnf:
[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
# Default to using old password format for compatibility withmysql 3.x
# clients (those using the mysqlclient10 compatibilitypackage).
old_passwords=1
是采用兼容格式的密码,而 php5.3的php_mysql; php_pdo_mysql采用的是增强的密码,所以导致两者不匹配,最方便的方式还是更新db的设置,取消 old_passwords
然后在 mysql.mysql.user,更新所有用户的密码, 如:
update user set password=PASSWORD(‘new password‘) where user=‘thisuser‘;
flush privileges;
即可
不过更新my.cnf 需要重新启动 mysql ,对于应用中的服务器,不是必要就千万别更新php客户端了,哈哈
第三篇:
新的mysqlnd库需要使用MySQL 4.1新的41-byte的密码格式
使用旧的16字节的密码将导致mysql_connect()和类似的函数产生一个错误:mysqlnd cannotconnect to MySQL 4.1+ using old authentication.(mysqlnd不能用旧的验证方式来连接到MySQL 4.1以上的版本)
解决方法
这个比较变态 研究了好久 最后发现问题出在 my.cnf
1居然配置了old-password=1或者是old_password=1(把这一句注释掉)
2去掉之后 使用 set password for‘root’@‘localhost’ = password(‘xxx’)
为root生成了新的41位密码 问题解决
第四篇:官方的說法是
MySQL 4.1 and up uses an authentication protocol based on apassword hashing algorithm that is incompatible with that used byolder clients. .....
如果你升級mysql到4.1以上版本后遇到以上問題,請先確定你的mysql client 是4.1或者更高版本.
請使用以下2種方法之一
其一: (使用AppServ在修改mysql密碼時要使用下列方法才行)
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;
上面some_user, some_host, newpwd是要自己填入的
摘自网络
连接mysql问题 mysqlnd cannot connect to MySQL 4.1+ using old authentication
标签:
原文地址:http://www.cnblogs.com/sunsoftware/p/4559162.html