Answers for "(2002, "Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)")"

SQL
11

ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)

sudo chown -R _mysql:mysql /usr/local/var/mysql

sudo mysql.server start
Posted by: Guest on May-12-2020
5

can't connect to local mysql server through socket '/tmp/mysql.sock' (2)

Try to start the MySQL server:
mysql.server start
Posted by: Guest on June-23-2020
0

Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)

ln -s /private/var/mysql/mysql.sock /tmp/mysql.sock
Posted by: Guest on December-23-2020
0

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

##	ERROR 2002 (HY000): 
##	Can't connect to local MySQL server through socket 

#### Follow below steps and you good to go... ####
sudo dpkg-reconfigure mysql-server-{version_number}
##version_number should be mysql version number installed
## Now try login in mysql shell
sudo mysql -u root -p
Posted by: Guest on August-18-2020
-1

error 2002 (hy000): can't connect to local mysql server through socket '/var/run/mysqld/mysqld.sock' (2)

mysql -h 127.0.0.1 -P 3306 -u root -p <database>
Posted by: Guest on November-05-2020
0

ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)

For mac:
The mysql server is not running.

brew services mysql start
Posted by: Guest on March-13-2021

Code answers related to "(2002, "Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)")"

Code answers related to "SQL"

Browse Popular Code Answers by Language