やりたかったこと
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.
省略