> 数据库 > MySQL >

Mac brew 安装mysql 报错 ERROR 2002 (HY000): Can't connect to local MySQL server through socket

安装mysql 最新版 56
 
brew install mysql
 
启动报错
 
ben:~ soul$ which mysql
/usr/local/bin/mysql
ben:~ soul$ mysql
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)
 
解决办法
 
运行
 
ben:~ soul$ mysql.server start
Starting MySQL
. SUCCESS! 
ben:~ soul$ mysql -uroot -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.6.26 Homebrew
 
设置 mysql 自启动
 
设置 mysql root 密码
 
ben:~ soul$ ls /usr/local/bin | grep mysql --color
msql2mysql
mysql
mysql.server
mysql_client_test
mysql_client_test_embedded
mysql_config
mysql_config_editor
mysql_convert_table_format
mysql_embedded
mysql_find_rows
mysql_fix_extensions
mysql_install_db
mysql_plugin
mysql_secure_installation
mysql_setpermission
mysql_tzinfo_to_sql
mysql_upgrade
mysql_waitpid
mysql_zap
mysqladmin
mysqlbinlog
mysqlbug
mysqlcheck
mysqld
mysqld_multi
mysqld_safe
mysqldump
mysqldumpslow
mysqlhotcopy
mysqlimport
mysqlshow
mysqlslap
mysqltest
mysqltest_embedded
ben:~ soul$ 
ben:~ soul$ mysql_secure_installation
 
 
关键命令 mysql_secure_installation
(责任编辑:IT)