從官網下載mysql8安裝文件
首先,我們需要從mysql官網上下載mysql8版本的安裝文件。在瀏覽器中輸入 https://dev.mysql.com/downloads/mysql/ ,然后選擇最新版本的MySQL Community Server,接著在下載頁面選擇適合你操作系統的版本即可。
安裝mysql8
完成下載后,可以開始安裝mysql8。彈出安裝窗口后,選擇Custom模式進行安裝,這樣可以對安裝選項進行自定義。
安裝選項如下:
Installation Type:MySQL Server and MySQL Workbench;
Check Requirements and Product Support:按照自己需求選擇;
Type and Networking:選擇Legacy MySQL passwd;
Authentication Method:Use Strong Password Encryption (RECOMMENDED);
Accounts and Roles:設置root用戶的密碼以及其他需要創建的普通用戶;
Windows Service:按需選擇,可以選擇自動運行。
點擊Next進行下一步操作。
安裝向導會在后面的步驟中詢問需要安裝的組件,已安裝組件,中間件以及語言。可以根據自己的需要進行選擇。
安裝完成后,我們需要打開MySQL Comman-Line Client確認一下MySQL是否安裝成功。
輸入以下命令進行測試:
mysql -u root -p
如果成功登錄,系統會提示:
Welcome to the MySQL monitor.
至此,mysql8的下載與安裝完成。
附安裝命令:
sudo apt install mysql-server
sudo systemctl status mysql
sudo mysql_secure_installation
sudo systemctl enable mysql
sudo systemctl start mysql
sudo apt install mysql-server # 下載mysql sudo apt install mysql-client # 下載客戶端 sudo apt install apache2 php myslq-server php-mysql # 下載php環境