Windows下忘記MySQL root密碼的解決方案

來源:互聯網
上載者:User

Windows下忘記MySQL root密碼的解決方案

1.開啟MySQL設定檔 my.ini中,添加上skip-grant-tables,可以添加到檔案的末尾或者是這添加到[mysqld]的下面。

2.然後重啟MYSQL服務

windows環境中:
net stop MySQL 
net start MySQL

如果出現不是有效命令,注意環境變數的配置

3.設定ROOT密碼

在命令上輸出

注意選擇資料庫, use mysql。

現在我們執行如下語句把root密碼更新為123456:
update user set password=PASSWORD("123456") where user='root';

quit 退出MySQL

4.還原設定檔並重啟

再把上面的“skip-grant-tables”刪掉,重啟服務

本文永久更新連結地址:

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.