0
0

More than 1 year has passed since last update.

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

Posted at

エラー内容

  • railsでサーバーを起動しようとしたところ下記エラーが発生
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)

原因

  • mysql.sockファイルがないと言われているよう
  • ファイルが突然消えることがあるらしい

対処法

  • mysql.sockファイルを作成
$ sudo touch /tmp/mysql.sock
  • MySQLを再起動
$ sudo mysql.server restart

無事サーバーに接続できた。

[参考にしたサイト]https://zenn.dev/ogakuzuko/articles/6958a35833d4fd

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0