Mysql4.1Windows下升级问题_PHP
程序员文章站
2022-06-17 14:57:52
...
使用PHPMYADMIN时报错:
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. .....
如果你升级mysql到4.1以上版本后遇到以上问题,请先确定你的mysql client 是4.1或者更高版本.(WINDOWS下有问题你就直接跳到下面看解决方法了,因为MYSQL 在WINDOWS是client和server一起装上了的)
请使用以下两种方法之一
其一:
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;
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. .....
如果你升级mysql到4.1以上版本后遇到以上问题,请先确定你的mysql client 是4.1或者更高版本.(WINDOWS下有问题你就直接跳到下面看解决方法了,因为MYSQL 在WINDOWS是client和server一起装上了的)
请使用以下两种方法之一
其一:
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;
推荐阅读
-
php中强制下载文件的代码(解决了IE下中文文件名乱码问题)
-
php 上传/保存文件 到不同的路径下的有关问题
-
各位大牛帮小弟我弄下php加mysqli的扩展有关问题
-
在wamp集成环境下升级php版本(实现方法)_PHP
-
几个php基础但是书下没找到的有关问题
-
Win环境下PHP NTS版本的安装问题
-
关于在dos 下 command php 跟 在web的环境下 斜线跟反斜杠的问题
-
mysql - php微信公众号开发 小问题 求大牛高手解答下
-
一段php代码,程序能运行,但同学说我代码有问题,求大神指点一下
-
,能否帮忙下小弟解决这个有关问题吗,php foreach循环取到里面所有的值在静态页面显示