➜ ~ brew services start mysql Service `mysql` already started, use `brew services restart mysql` to restart. ➜ ~ mysql ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)
这个ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)给我干沉默了;
Homebrew默认把 sock 放到 /opt/homebrew/var/mysql/mysql.sock,而 mysql 命令默认去 /tmp/mysql.sock,所以会报 2002;
直接走TCP连接试一下:
1 2 3 4 5 6 7 8 9 10 11 12
➜ ~ mysql -uroot -h127.0.0.1 -P3306 --protocol=tcp Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 9 Server version: 9.3.0 Homebrew
Copyright (c) 2000, 2025, Oracle and/or its affiliates.
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'forhelp. Type '\c' to clear the current input statement.