Answers for "Can't connect to local MySQL server through socket '/tmp/mysql.sock"

SQL
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
-1

can't connect to local mysql server through socket '/var/run/mysqld/mysqld.sock'

# Start your mysql server
/etc/init.d/mysql start
Posted by: Guest on October-22-2020
1

can't connect to local mysql server through socket '/var/run/mysqld/mysqld.sock'

# this saved my ass
# first  you must perform a graceful shutdown of the server from the command line rather than powering off the server
shutdown -h now

# an additional method for getting it back up again when you run into this problem is to move mysql.sock

# to centos
mv /var/lib/mysql/mysql.sock /var/lib/mysql/mysql.sock.bak

# to ubuntu
mv /var/run/mysqld/mysqld.sock /var/run/mysqld/mysqld.sock.bak

# restart mysql
service mysqld start
Posted by: Guest on September-15-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
1

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

sudo /usr/local/mysql/support-files/mysql.server start
Posted by: Guest on May-22-2021

Code answers related to "Can't connect to local MySQL server through socket '/tmp/mysql.sock"

Code answers related to "SQL"

Browse Popular Code Answers by Language