一尘不染

服务器在WAMP服务器中没有响应(或本地MySQL服务器的套接字未正确配置)

mysql

我目前在phpmyadmin中遇到此错误:

2002-服务器没有响应(或本地MySQL服务器的套接字未正确配置)

我尝试了Google搜索,并尝试了每种解决方案。不幸的是,对我没有任何帮助。

顺便说一句,我正在使用沼泽服务器。

下面是我从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'] = '';

?>

阅读 390

收藏
2020-05-17

共1个答案

一尘不染

mysql的默认端口是3306,您可以尝试将其放入,然后尝试

2020-05-17