升級phpStudy中的MySQL
阿新 • • 發佈:2018-01-11
roo gin 解壓縮 word ref default .com pre oot 1.下載MySQL最新壓縮版.
4. 添加MySQL路徑到環境變量
5. 配置my.ini
6. 添加skip-grant-tables到my.ini的mysqld,省略密碼登陸
7. 啟動MySQL
網址如下: https://dev.mysql.com/downloads/mysql/ ,拉到頁面最底部,根據需要,選擇你需要的組合,就可以拿到最新版的win下面的64位mysql壓縮版了。
2. 備份當前MySQL.
- 停止phpStudy的服務
- 退出phpStudy
- 重命名phpStudy下的MySQL文件夾為MySQL.old即可,默認位置為C:\phpStudy\PHPTutorial\MySQL
3. 解壓縮最新版mysql
把下載的mysql壓縮版,解壓到phpstudy下面的mysql目錄,默認位置為C:\phpStudy\PHPTutorial\MySQL。
5. 配置my.ini
6. 添加skip-grant-tables到my.ini的mysqld,省略密碼登陸
7. 啟動MySQL
- 使用管理員身份啟動cmd, 輸入net start mysql啟動MySQL
- mysql -uroot 連接到MySQL
8. 在MySQL下運行下列命令
use mysql; # use mysql table update user set authentication_string=PASSWORD("root") where User=‘root‘; # update password to root update user set plugin="mysql_native_password" where User=‘root‘; # set password resolving to default mechanism for root user flush privileges; quit;
9. 在my.ini中註釋掉skip-grant-tables,重啟mysql服務
10. 重新連接MySQL,用root/root登陸
升級phpStudy中的MySQL