Whenever I try to access myPhpAdmin it keep showing me this error #2002 - The server is not responding (or the local MySQL server's socket is not correctly configured) I have VPS. any help would be really appreciated. Thank you.
Make sure that MySQL up and running on your VPS. Also check that the symlink for MySQL socket is created in /tmp (if it is cPanel. I am not sure for other control panel). Kailash
yeah i have c panel but i don't know nothing about this i m newbie at this can you please tell me in more detail thanks
To check the symlink for mysql.sock, go to your tmp partition using cd /tmp command and check whether below symlink is created or not: mysql.sock -> ../../var/lib/mysql/mysql.sock= If it is not create then you can create it using below command: ln -s mysql.sock ../../var/lib/mysql/mysql.sock= Kailash