一、下載MySQL
官網下載頁面點擊後進入如下頁面
按圖操作即可,接下來:
二、安裝和配置
安裝按照步驟來即可。但是要記住最後的初始密碼。
最後我們在電腦的系統偏好設置裡面可以看見安裝的MySQL
默認MySQL是啟動的。
在打開之前我們需要在終端中配置一下。
代碼如下復制代碼
PATH="$PATH":/usr/local/mysql/bin
mysql -u root -p
#輸入密碼
#Terminal顯示
#Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connectionidis 10
Server version: 5.7.12
Copyright (c) 2000, 2016, Oracle and/orits affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/orits
affiliates. Other names may be trademarks of their respective
owners.
Type'help;'or'\h'forhelp. Type'\c'toclearthe current input statement.
mysql>SET PASSWORD = PASSWORD('new password');