Thursday, September 6th, 2007
这是MySQL参考手册的翻译版本,关于MySQL参考手册,请访问dev.mysql.com。 原始参考手册为英文版,与英文版参考手册相比,本翻译版可能不是最新的。
手册地址:http://www.nahesky.com/handbook/mysql/
Posted in MySQL | No Comments »
Sunday, August 5th, 2007
提示错误:
Client does not support authentication protocol requested by server; consider upgrading MySQL client
原因:
出现这种问题也只有在MYSQL4.1.x以上版本
因为你使用的mysql服务器版本中使用了新的密码验证机制,这需要客户端的版本要在4.0以上,原来的密码函数被改为old_password();,这样使用password()生成的密码在旧的版本上的客户端就不好使了,而PHP中的MYSQL客户端都是3.23的(当然,mysqli的扩展除外)。
解决方法:重新设置mysql的数据库密码
# mysql -uroot -p1234567 (用户名:root,密码:1234567)
mysql>set password for ‘root’@'localhost’=old_password(’1234567′);
mysql>exit
#
Posted in MySQL | No Comments »