• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

MySQL Socket not correctly configured, PMA error

lord5

New Member
Joined
Oct 5, 2010
Messages
175
Reaction score
1
HEllo!

When i want go to phpmyadmin i get this Error:

MySQL said:

#2002 - The server is not responding (or the local MySQL server's socket is not correctly configured) .
 
Last edited by a moderator:
Try changing host name localhost with 127.0.0.1, I solved this before by using this easy method.

In case that doesn't work, I would suggest explicitly specifying the mysql socket location in the config.inc.php. For example, the mysql socket could very well be /tmp/mysql.sock, so you would just find the line in config.inc.php that says:

$cfg['Servers'][$i]['socket'] = '';

and change it to say:

$cfg['Servers'][$i]['socket'] = '/tmp/mysql.sock';

That is what I think the error message is complaining about.

BTW, You're not using a proper thread title, please read this, I edited the title for you this time.
 
Back
Top