我目前得到我的phpmyadmin這個錯誤:服務器未在WAMP的服務器響應(或者本地MySQL服務器的套接字沒有正確配置)
2002 - 服務器沒有響應(或者本地MySQL服務器的插座沒有正確配置)
我試過Google搜索,並給每個解決方案,我發現一個嘗試。不幸的是,沒有爲我工作。
順便說一下,我使用的是wamp服務器。
下面是我從C:\ wamp \ apps \ phpmyadmin3.2.0.1中配置config.inc.php的配置文件。
<?php
/* Servers configuration */
$i = 0;
/* Server: localhost [1] */
$i++;
$cfg['Servers'][$i]['verbose'] = 'localhost';
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['port'] = '';
$cfg['Servers'][$i]['socket'] = '/tmp/mysql.sock';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
$cfg['Servers'][$i]['AllowNoPassword'] = true;
/* End of servers configuration */
$cfg['DefaultLang'] = 'en-utf-8';
$cfg['ServerDefault'] = 1;
$cfg['UploadDir'] = '';
$cfg['SaveDir'] = '';
?>
你是怎麼把默認端口3306?你可以把命令?謝謝, – J4cK 2013-06-22 13:00:26
我試圖編輯端口,但它不起作用 – 2016-10-04 01:15:14