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

SQL
4

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
3

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
Posted by: Guest on October-31-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
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

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

Code answers related to "SQL"

Browse Popular Code Answers by Language