LoginSignup
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

やりたかったこと
mysqlで立ち上げログインする
環境
macOS Ventura

ログインする

username% mysql -usaaaMPro.local -p
Enter password:

エラー

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

翻訳
エラー 2002 (HY000): ソケット '/tmp/mysql.sock' を介してローカル MySQL サーバーに接続できません (2)。

そもそもサーバーを起動していませんでした笑
なので、mysql.server startで起動!

username% mysql.server start
Starting MySQL
.. SUCCESS!

自分のユーザーログイン

username% mysql -uユーザー名 -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 8
Server version: 8.0.32 Homebrew

Copyright (c) 2000, 2023, Oracle and/or its affiliates.
省略
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