Skip to content

Instantly share code, notes, and snippets.

@girisagar46
Last active May 11, 2020 07:15
Show Gist options
  • Save girisagar46/9256504b4feb4b5b4c5eada7cf12e20c to your computer and use it in GitHub Desktop.
Save girisagar46/9256504b4feb4b5b4c5eada7cf12e20c to your computer and use it in GitHub Desktop.
. ERROR! The server quit without updating PID file (/var/run/mysqld/mysqld.pid).

Error message:

$ mysql.server start                                                                                                                                                                                             ✔

Starting MySQL
. ERROR! The server quit without updating PID file (/var/run/mysqld/mysqld.pid).
$ mysql                                                                                                                                                                                                        1 ↵
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (61)

FIX:

$ sudo mkdir /var/run/mysqld
$ cd /var/run/mysqld
$ sudo touch mysqld.pid
$ sudo chmod 777 /var/run/mysqld
$ sudo chown sagar-giri:_mysql /var/run/mysqld
$ mysql.server start
   Starting MySQL
   . SUCCESS!
$ mysql -u root -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.7.28 Homebrew

Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| sys                |
+--------------------+
4 rows in set (0.00 sec)

mysql> exit
Bye
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment