网站制作

本类阅读TOP10

·IIS 安装配置全攻略
·用VS.NET打开网上下载的.NET web项目出错的解决办法
·HTML 4.0 语言快速参考
·限制TextArea区的文字输入数量
·如何在网页上实现进度条
·Apache的配置步骤及测试
·谈谈Jesse James Garrett提到的Ajax
·html基础学习笔记(2)
·页面垂直居中的两种方法
·用asp遍历目录下文件的例子

分类导航
VC语言Delphi
VB语言ASP
PerlJava
Script数据库
其他语言游戏开发
文件格式网站制作
软件工程.NET开发
Mysql4安装Client does not support authentication protocol requested问题的解决

作者:未知 来源:月光软件站 加入时间:2005-2-28 月光软件站

Mysql4安装Client does not support authentication protocol requested问题的解决

今天升级了一下Mysql数据库,结果出现了以下错误:
Client does not support authentication protocol requested by server; consider upgrading MySQL client

升级到4.1.7版:
[root@eygle gbook]# mysql -uroot -p -heygle
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 44 to server version: 4.1.7-max

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql>

查询了一下,在官方网站发现了解决方法:
http://dev.mysql.com/doc/mysql/en/Old_client.html

共有以下两种解决方法:

一:

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;


使用第二种方法,解决了该问题。

 
 

 




相关文章

相关软件