MySQL5 改密码后不能登录问题的解答[MySQL防范]
本文“MySQL5 改密码后不能登录问题的解答[MySQL防范]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:
首先阐明一下,下面描写仅限于Win系统 别的系统我没试过,MySQL 自从4.1.1今后改正了用户密码的格局, 从16位增添到了41位, 采取了一种新的考证办法,但4.1从前的客户端协议不支持这种办法,所以造成了不能登临的后果.即便密码精确了不能正常登录,提醒以下:
#1250 - Client does not support authentication protocol requested by server; consider upgrading MySQL client
在窗口中履行:
C:\mysql\bin>mysql -uroot
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1 to server version: 5.0.0-alpha-nt
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> select password('aa');
+-------------------------------------------+
| password('aa')|
+-------------------------------------------+
| *DEE59C300700AF9B586F9F2A702231C0AC373A13 |
+-------------------------------------------+
1 row in set (0.00 sec)
mysql>
从上可以看出password的后果返回了一个以'*'号开首的41位字符串,而从前是16位的.
Mysql官方网站给出了二种办理办法
1,利用新的客户端api,
2,强迫服务器利用旧的密码筹划
我首先尝试了第一种办法,从mysql5.0中拷贝libmysql.dll到PHP 的扩大目录中,替换了php本身附带的libmysql.dll, 但后果令人绝望. Php提醒装入php_mysql.dll失利:PHP Warning: PHP Startup: Unable to load dynamic library 'c:/php5/ext/php_mysql.dll' - 找不到指定的程序.后来发现新版的dll中贫乏了mysql_drop_db() 这一函数 :( 只有等php或mysql出更新的dll了.
第一种办法行不通,只有试试第二种办法,mysql的官方FAQ中说,需求加上-old-password这一参数,我首先尝试 在号令行下起动mysql,
c:\mysql\bin>mysqld-nt -old-password
在另一窗口中 运行
C:\mysql\bin>mysql -uroot
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 540 to server version: 5.0.0-alpha-nt
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> select password('mypassword');
+------------------------+
| password('mypassword') |
+------------------------+
| 162eebfb6477e5d3 |
+------------------------+
1 row in set (0.55 sec)
mysql>
可以看出password的后果又变成16位的了,可喜的改变
我在c:\windows\my.ini (xp,98,中如此,2000中应在c:\wint\下)中的"mysqld"段中加入"set-variable=old-passwords"
例:
[mysqld]
basedir=C:/mysql
set-variable=old-passwords
datadir=C:/mysql/data
[WinMySQLadmin]
Server=C:/mysql/bin/mysqld-nt.exe
user=root
password=mypassword
然后在服务管理器中起动mysql
后来我又发现,只要在mysql.user表中把password的字段长度改成16系统就自动切换到了oldpassword方法,改成改回41后 又自动换到了新的考证方法.在这里提醒一下,更改password方法后,要重新设制一下密码并革新一下权限(或重起mysql)
本文地址: | 与您的QQ/BBS好友分享! |