如果你正在使用Mac系統,并且需要安裝MySQL數據庫,那么就可以參考以下步驟進行安裝:
1. 安裝Homebrew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
2. 安裝MySQL
brew install mysql
3. 啟動MySQL
mysql.server start
4. 設置root賬戶密碼
mysql_secure_installation
在MySQL安裝完成后,你可以使用以下步驟進行測試:
1. 進入MySQL
mysql -uroot -p
2. 輸入密碼
Enter password:
3. 成功登錄后,顯示MySQL提示符
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.7.18 Homebrew
以上是在Mac上安裝MySQL的簡單過程及測試。如果需要卸載MySQL,請使用以下命令:
brew remove mysql
brew cleanup