MAC下homebre安裝mysql

李博Garvin發表於2015-04-09

1.執行安裝命令

 brew install mysql

2.執行完輸入mysql會有如下bug

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

3.bug解決方案

unset TMPDIR

4.然後

mysql_install_db --verbose --user=root --basedir="$(brew --prefix mysql)" --datadir=/usr/local/var/mysql --tmpdir=/tmp

5.啟動server

mysql.server start

6.登陸

mysql -uroot -p


搞定!

/********************************

* 本文來自部落格  “李博Garvin“

* 轉載請標明出處:http://blog.csdn.net/buptgshengod

******************************************/



相關文章