windows 下載並安裝mysql8
阿新 • • 發佈:2020-08-01
1、可以到mysql官網下載,不過速度太慢。 到國內源網站下載網址http://mirrors.sohu.com/mysql/MySQL-8.0/ ctrl + f 搜尋 win 找到自己想要下載的版本選擇winx64.zip 下載
2、安裝步驟
1、如果之前已經安裝過mysql,就先需要先刪除,先執行 net stop mysql 再執行 sc delete mysql 然後重啟電腦 2、解壓安裝包,並解壓檔案的bin目錄下執行cmd 3、執行mysqld --initialize-insecure --user=mysql 4、執行 mysqld -install 安裝 5、win + R 輸入services.msc 找到mysql並啟動6、執行 mysql -u root -p 初始不用密碼,直接回車登入 7、use mysql; 8、執行 alter user 'root'@'localhost' identified with mysql_native_password BY 'root'; 修改root密碼 9、update user set host='%' where user='root'; (設定內網可訪問、如果有需要時設定) 10、執行 flush privileges; 重新整理資料庫、到此已經安裝完成
完成安裝,簡簡單單