error 2002 mysql 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.sock' (2)
sudo apt-get install mysql-server
Example 3: ERROR 2002 (HY000): Can
# This is usually caused by the fact that the
# MySQL Server isn't even running
# On Windows, check your services, if its not running
# start it, or install and start it.
# On *nix, for this example Debian based
# Firstly see if it's even running
ps aux | grep mysql
# If you dont see any process other than your grep call,
# It's not running
# Assuming you have mysql-server installed
# Start it
sudo /etc/init.d/mysql start
# Otherwise install it, configure and start it up as above
sudo apt-get install mysql-server
# Goodbye 2002