重設忘記的Mysql密碼

來源:互聯網
上載者:User

換電腦後裝php環境有點不順,因為phpmyadmin和mysql都是空密碼,所以我一改一改,改到登不了錄了,於是開始了找回mysql密碼的過程,

測試過程就略過吧,還是直接上答案:

 

1,用管理員登入系統

2,關閉mysql服務或進程

3,進入CMD,進入mysql下的bin目錄(下文以...代替),以關閉許可權檢查的方式開啟mysql,

  ...>mysqld --skip-grant-tables

  或

  ...>mysqld-nt ––skip-grant-tables

   [註:]

   3.1 
   mysqld.exe是微軟Windows MySQL server資料庫伺服器相關程式。
   mysqld-nt.exe是MySQL Daemon資料庫服務相關程式。

  我安裝的是easyphp,裡面帶的mysql沒有mysqld-nt,所以用的是Mysqld.exe

   3.2

  假如提示skip-locking已淘汰,要你用skip-external-locking代替,就是說,你需要進入到my.ini檔案,把skip-locking換成skip-external-locking

4,上述命令執行完,應該可以看到mysqld.exe服務已經啟動,此時再另開一個cmd視窗,進入mysql的bin目錄

5,用一個空密碼登入:

  ...>mysql -u root

  ...>use mysql;

  ...>update user set password=password('你的密碼') where user='root';

  ...>flush privileges;

  ...>quit;

6,重啟mysql服務

此時你的密碼已經變成'mysql'了,

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.