Shell/Bash: can't connect to local mysql server through socket '/var/run/mysqld/mysqld.sock' Example
Shell/Bash Example: This is the "can't connect to local mysql server through socket '/var/run/mysqld/mysqld.sock'" Example. compiled from many sources on the internet by SimpleTutorials.org
can't connect to local mysql server through socket '/var/run/mysqld/mysqld.sock'
# Start your mysql server /etc/init.d/mysql start
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
Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)
service mysql start
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
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)
sudo apt-get install mysql-server
how to connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)
#/usr/sbin/mysqld --defaults-file=/etc/mysql/my.cnf --basedir=/usr --datadir=/var/lib/mysql --pid-file=/var/run/mysqld/mysqld.pid --socket=/var/run/mysqld/mysqld.sock
* Summary: This "can't connect to local mysql server through socket '/var/run/mysqld/mysqld.sock'" Shell/Bash Example is compiled from the internet. If you have any questions, please leave a comment. Thank you!