Question

#2002 - No such file or directory — The server is not responding (or the local server's socket is not correctly configured).

When I try to login my PHPMyAdmin, I get the following error messages:

#2002 - No such file or directory — The server is not responding (or the local server's socket is not correctly configured).

mysqli_real_connect(): (HY000/2002): No such file or directory

Connection for controluser as defined in your configuration failed.

Error screenshot: https://www.screencast.com/t/TciiR9NIBi

but after rebooting my droplet, I am able to use my WordPress and PHPMyAdmin normally without any errors!

It’s really frustrating to get that error randomly! Please help me.

Show comments

Submit an answer


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Sign In or Sign Up to Answer

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Bobby Iliev
Site Moderator
Site Moderator badge
August 27, 2019
Accepted Answer

Hello,

I would recommend changeinglocalhost to 127.0.0.1 in your config.inc.php PHPmyAdmin file.

It should look something like this after the change:

$cfg['Servers'][$i]['host'] = '127.0.0.1';

That way when using 127.0.0.1 PHPmyAdmin would make a TCP connection which should work.

Let me know how it goes. Regards, Bobby

I’m having the same error and it pops randomly also. The above fix it didn’t worked for me. That line is commented and I have this instead:

/* Authentication type */
    $cfg['Servers'][$i]['auth_type'] = 'cookie';
    /* Server parameters */
    if (empty($dbserver)) $dbserver = '127.0.0.1';
    $cfg['Servers'][$i]['host'] = $dbserver;

    if (!empty($dbport) || $dbserver != '127.0.0.1') {
        $cfg['Servers'][$i]['connect_type'] = 'tcp';
        $cfg['Servers'][$i]['port'] = $dbport;
    }

A you can see i have replaced the localhost with the IP suggested but still that error pops up from time to time. Any suggestion?

Become a contributor for community

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

DigitalOcean Documentation

Full documentation for every DigitalOcean product.

Resources for startups and SMBs

The Wave has everything you need to know about building a business, from raising funding to marketing your product.

Get our newsletter

Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.

New accounts only. By submitting your email you agree to our Privacy Policy

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.