phpmyadmin can't connect to local mysql server through socket code example

Example 1: ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)

# Remove mysql
sudo apt-get remove --purge mysql\*

#update repositories
sudo apt update

# Reinstall it
sudo apt install mysql-server mysql-client

# Test if it runs
sudo mysql

# You can install also thes pachages. Optionnaly
sudo apt install php

#mesabo youbeyou

Example 2: ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.s

> ln -s /var/lib/mysql/mysql.sock /tmp/mysql.sock
> 
> service mysql start or service mysql start

Example 3: ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)

sudo apt-get install mysql-server

Example 4: can't connect to local mysql server through socket

Solution #1: Check If MySQL Service is Runnning.
Solution #2: Connect with 127.0. 0.1.
Solution #3: Modify the my. cnf file.
Solution #4: Verify mysql. sock Location.
Solution #5: Change MySQL Folder Permission.
Solution #6: Multiple MySQL Instances.

Tags: