- 首先下載mysql,連結:www.mysql.com 點選DOWNLOADS->Community->MySQL Community Server
- 安裝之後開啟偏好設定
- 點選MySQL,開啟mysql
- 在終端中輸入mysql路徑:
PATH="$PATH":/usr/local/mysql/bin複製程式碼
- 在終端登入到MySQL的命令如下:
mysql -u root -p複製程式碼
- 如果顯示的內容如下,即是已經成功登入到MySQL服務:
- 展示mysql的埠
show global variables like 'port';複製程式碼
2.navicat連結mysql
首先下載Navicat for MySQL,史蒂芬週上有
下載後開啟,點選連結,
如果遇到這種情況 MySQL said: Authentication plugin 'caching_sha2_password' cannot be loaded: dlopen(/usr/local/lib/plugin/caching_sha2_password.so, 2): image not found
解決方案:
- 開啟系統偏好設定,找到mysql,點選Initialize Database。
- 輸入你的新密碼,記住這個密碼,用於後期連結資料庫的登陸使用。
- 選擇‘Use legacy password‘。
- 重啟mysql服務。
- 使用sequel Pro連結。
在重新連結就好了