首先說明一下
下面描述僅限於Win系統 其它系統我沒試過
Mysql 自從
以後修改了用戶密碼的格式
從
位增加到了
位
采用了一種新的驗證方法
但
以前的客戶端協議不支持這種方法
所以造成了不能登臨的後果
即使密碼正確了不能正常登錄
提示如下:
#
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
to server version:
alpha
nt
Type
help;
or
\h
for help
Type
\c
to clear the buffer
mysql> select password(
aa
);
+
+
| password(
aa
) |
+
+
| *DEE
C
AF
B
F
F
A
C
AC
A
|
+
+
row in set (
sec)
mysql>
從上可以看出password的結果返回了一個以
*
號開頭的
位字符串
而以前是
位的
Mysql官方網站給出了二種解決方法
使用新的客戶端api
強制服務器使用舊的密碼方案
我首先嘗試了第一種方法
從mysql
中拷貝libmysql
dll到php 的擴展目錄中
替代了php本身附帶的libmysql
dll
但結果令人失望
Php提示裝入php_mysql
dll失敗:PHP Warning: PHP Startup: Unable to load dynamic library
c:/php
/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
to server version:
alpha
nt
Type
help;
or
\h
for help
Type
\c
to clear the buffer
mysql> select password(
mypassword
);
+
+
| password(
mypassword
) |
+
+
|
eebfb
e
d
|
+
+
row in set (
sec)
mysql>
可以看出password的結果又變成
位的了
可喜的變化
我在c:\windows\my
ini (xp
中如此
中應在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
Very Good
一切正常
後來我又發現
只要在mysql
user表中把password的字段長度改成
系統就自動切換到了oldpassword方式
改成改回
後 又自動換到了新的驗證方式
在這裡提醒一下
更改password方式後
要重新設制一下密碼並刷新一下權限(或重起mysql)
From:http://tw.wingwit.com/Article/program/Java/Javascript/201311/25277.html