在Mac上搭建MySQL有幾個步驟:
- 安裝Homebrew
- 使用Homebrew安裝MySQL
- 啟動MySQL服務
安裝Homebrew
$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
使用Homebrew安裝MySQL
$ brew install mysql
啟動MySQL服務
$ mysql.server start
連接MySQL
$ mysql -uroot -p
MySQL安裝完成后,還需要進行一些基本設置,如設置密碼:
mysql>ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password';
最后一個提示是重要的,必須使用mysql_native_password驗證插件才能將MySQL用戶的密碼重置為密碼。
上一篇css包含塊隨內容而變寬
下一篇css文字靠左上下居中