2013-06-28 260 views
1

我已經嘗試了本網站上提供的所有選項和答案以解決問題。問題是我已經安裝了「WAMP服務器2.2」當我打開'phpMyAdmin的頁面它顯示了以下錯誤消息:WAMP服務器訪問被拒絕

MySQL said: 
#1045-Access denied for user 'root'@'local-host' (using password: NO) 

我嘗試重新安裝服務器,重新啓動服務器,也是我試過也和done重置密碼一切,我可以在這裏找到解決方案。但它不起作用。請幫我解決這個問題。

+0

這可能是phpmyadmin的一個問題,你看了看你的mysql.ini文件,那是保存數據的地方。 – usumoio

+0

您已設置MySql服務器的密碼。而且,您正在使用空密碼登錄。轉到PhpMyAdmin文件夾,有配置文件,打開並更改有效的MySql密碼,然後重試。 – 2013-06-28 12:29:43

+0

我還沒有設置任何密碼。最後我能打開它。感謝你們; –

回答

0

編輯config.inc.php文件。

$cfg['Servers'][$i]['verbose'] = 'localhost'; 
$cfg['Servers'][$i]['host'] = 'localhost'; 
$cfg['Servers'][$i]['port'] = '3306'; 
$cfg['Servers'][$i]['socket'] = ''; 
$cfg['Servers'][$i]['connect_type'] = 'tcp'; 
$cfg['Servers'][$i]['extension'] = 'mysqli'; 
$cfg['Servers'][$i]['auth_type'] = 'config'; 
$cfg['Servers'][$i]['user'] = 'YOUR_USERNAME'; 
$cfg['Servers'][$i]['password'] = 'YOUR_PASSWORD'; 
$cfg['Servers'][$i]['AllowNoPassword'] = true; 
+0

我已經嘗試過這個,它工作。非常感謝。你救了我。 –

+1

之後,我需要清除瀏覽器的所有cookies。 –

相關問題