#2002 - The server is not responding (or the local MySQL server's socket is not correctly configured)

后端 未结 4 386
傲寒
傲寒 2021-01-03 03:40

I can\'t access to PHPMyAdmin. when i want to go there, i got this error:

#2002 - The server is not responding (or the local MySQL server\'s socket is

4条回答
  •  太阳男子
    2021-01-03 04:28

    In Ubuntu, by default mysql is not listening to TCP/IP connections. It just uses a local socket.

    The current local socket is configured in /etc/mysql/my.cnf . If you open this file, you should find something similar to:

    [client]
    port            = 3306
    socket          = /var/run/mysqld/mysqld.sock
    

    What you should do is just to open PHPMyAdmin's config file (config.inc.php) and change the socket address. Maybe there's no local socket configuration on your PHPMyAdmin, or maybe it is different. This file should contain a line like (of course, adapt the address to what you found on my.cnf):

    $cfg['Servers'][$i]['socket'] = '/var/run/mysqld/mysqld.sock';
    

提交回复
热议问题