現在、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'] = '';
?>