1. 程式人生 > >MySQL忘記密碼的正確解決方法

MySQL忘記密碼的正確解決方法

以下的文章主要介紹的是MySQL忘記密碼的正確解決方法,在實際操作中如果你忘記MySQL密碼是一件很頭痛的事情,這篇文章主要是介紹對MySQL忘記密碼的補救方案,以下就有詳細內容描述,望你會有所收穫。

MySQL忘記密碼解決方案:

破解本地密碼:

Windows:

1.用系統管理員登陸系統。

2.停止MySQL的服務。

3.進入命令視窗,然後進入 MySQL的安裝目錄,比如我的安裝目錄是c:/mysql,進入C:/mysql/bin

4.跳過許可權檢查啟動MySQL,

c:/mysql/bin>mysqld-nt ––skip-grant-tables

或則:c:/mysql/bin>mysqld ––skip-grant-tables

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

MySQL忘記密碼解決方案5.[未驗證]

重新開啟一個視窗

進入c:/mysql/bin目錄,設定root的新密碼

c:/mysql/bin>mysqladmin -u root flush-privileges password "newpassword"

c:/mysql/bin>mysqladmin -u root -p shutdown

將newpassword替換為你要用的root的密碼,第二個命令會提示你輸入新密碼,重複第一個命令輸入的密碼。

5.[驗證]或則:

重新開打一個命令提示符的視窗(CMD)

用空密碼方式使用root使用者登入 MySQL;

mysql -u root

修改root使用者的密碼;

  1. mysql> update mysql.user set password=PASSWORD('新密碼') where User='root';   
  2. mysql> flush privileges;   
  3. mysql> quit  

6.停止MySQL Server,用正常模式啟動Mysql7.你可以用新的密碼連結到Mysql 了。

Unix&Linux:

1.用root或者執行mysqld 的使用者登入系統;

2.利用kill命令結束掉mysqld的程序;

3.使用–skip-grant-tables引數啟動MySQL Server

shell>mysqld_safe –skip-grant-tables &

4.為[email protected]設定新密碼

  1. shell>mysqladmin -u root flush-privileges password "newpassword"

5.MySQL忘記密碼解決方案重啟MySQL Server

附錄:

MySQL修改密碼的方法大全:

  1. mysql> update user set Password=password('newpassword') where User='root';   
  2. mysql> flush privileges;   
  3. MYSQLADMIN -u root -p PASSWORD mypasswd   

可以修改MYSQL資料夾中的MY.INI檔案

  1. mysql> SET PASSWORD FOR [email protected]localhost = PASSWORD('mypasswd');  
  2. mysql> GRANT USAGE ON *.* TO [email protected] IDENTIFIED BY 'mypassword';  

以上的相關內容就是對MySQL忘記密碼解決方案的介紹,望你能有所收穫。