我目前在我的 phpmyadmin 中收到此错误:
2002 - 服务器没有响应(或者本地 MySQL 服务器的套接字没有正确配置)
我尝试使用谷歌搜索并尝试找到每个解决方案。不幸的是,没有什么对我有用。
顺便说一句,我正在使用 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'] = '';
?>