MYSQL Error #2002
While accessing PhpMyAdmin getting the following error.
MYSQL Error #2002 – showing server is not responding or local MySQL server’s socket is not correctly configured.
Reason :-
The mysql socket file is missing from the /tmp directory
Fix :-
1. Create a symbolic link from the original mysql socket file to /tmp
[root@test ~]# ln -s /var/lib/mysql/mysql.sock /tmp
OR
2. Restart MySQL [...]

