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

2021-07-22 08:58:09 字數 571 閱讀 4550

windows

1:停止mysql的服務。

2:跳過許可權檢查啟動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資料庫服務相關程式。

3:重新開啟乙個視窗

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

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

linux

1:service mysqld stop;

2 :mysqld_safe –skip-grant-tables &

3:mysql -u root -p

4: update user set password=password('newpassword') where user='root';

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

摘要 以下的文章主要介紹的是 mysql 忘記密碼的正確解決方法,在實際操作中如果你忘記mysql密碼是一件很頭痛的事情,這篇文章主要是介紹對mysql忘記密碼的補救方案,以下就有詳細內容描述,望你會有所收穫。mysql忘記密碼解決方案 破解本地密碼 windows 1.用系統管理員登陸系統。2.停...

Windows下MySQL忘記密碼解決方法

在mysql安裝根目錄下找到my.ini檔案,以管理員身份開啟 在 mysqld 下新增 skip grant tables,儲存後關閉檔案 右擊 計算機 展開 服務和應用程式 單擊 服務 重新啟動mysql 用cmd進入到 mysql根目錄 bin,輸入 mysql u root p,提示輸入密碼...

忘記MySQL的root使用者密碼的解決方法

1.停止執行的mysql程序,後配置跳過授權表啟動mysqlservice mysqld stop1.1.先開啟乙個terminal,在 usr local mysql bin 下執行 sudo mysqld safe skip grant tables1.2.或者 在 etc my.cnf檔案的 ...