最近重灌了mac系統,所有常用的軟體都需要重新安裝一遍,無疑安裝一個brew是個很好的選擇,關於brew是什麼,怎麼安裝建議去brew官網檢視,附上地址:brew官網
安裝完成之後,安裝其他的軟體就特別方便了。
執行:
brew install mysql
等成功安裝完成,結果想要登入的時候報了個錯誤:
ERROR 2002 (HY000): Can not connect to local MySQL server through socket `/tmp/mysql.sock` (2)
網上搜尋了半天,找到解決方案,依次執行
unset TMPDIR
“`bash
mysql_install_db –verbose –user=root
–basedir=”$(brew –prefix mysql)” –datadir=/usr/local/var/mysql –tmpdir=/tmp
接下來啟動mysql
```bash
mysql.server start
啟動後就可以登入了,登入命令為:
mysql -uroot -p
然後提示輸入資料庫密碼,初始沒有密碼的情況下直接回車,就進入資料庫了
如果想設定開機啟動,執行下面的命令
mkdir -p ~/Library/LaunchAgents
cp /usr/local/Cellar/mysql/5.6.16/homebrew.mxcl.mysql.plist ~/Library/LaunchAgents/ #5.6.16是資料庫版本號,根據你當時所安裝的版本號自己修改
launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist
大功告成~