安裝mysql4.1.13中碰到的幾個問題
1.Communication failure during handshake. Is there a server running on localhost:3306?
解決辦法:
下載最新的jdbc驅(qū)動,解壓到jdk路徑下的jre/lib/ext目錄下,更新CLASSPATH
2. Server configuration denies access to data source
解決辦法:
grant all privileges on *.* to <username>@<servername>identified by '<password>' with grant option;
flush privileges;
3.Client does not support authentication protocol requested by server
解決辦法:
set password for <username>@<servername> = old_password('<password>');
posted on 2005-08-11 10:40 幸福是把溫暖的槍 閱讀(388) 評論(0) 編輯 收藏 所屬分類: mysql