mysql忘記root密碼的恢復

2021-09-21 16:58:13 字數 364 閱讀 4502

今天進行伺服器測試的時候,卻忘記了mysql的密碼了,當時暈倒,於是查了下資料.絕對比較好用的方法是

下面這個方法.

在my.cnf的[mysqld]字段加入:

skip-grant-tables

然後重啟你的mysql,這樣就沒有密碼了.

然後進入mysql.

update mysql.user set password=password

('password') where user='root';

成功後flush privileges;

最後去掉my.cnf中的skip-grant-tables

重啟mysql.

這樣mysql又可以用了.

mysql忘記root密碼

1.以系統管理員身份登陸系統。2.開啟cmd net start 檢視mysql是否啟動。啟動的話就停止net stop mysql.3.我的mysql安裝在d usr local mysql4 bin下。4.跳過許可權檢查啟動mysql.d usr local mysql4 bin mysqld ...

mysql忘記root密碼

1.開啟dos視窗,關閉正在執行的mysql net stop mysql。2.開啟dos視窗,轉到mysql bin目錄 cd c program files x86 mysql mysql server 5.1 bin。3.輸入mysqld skip grant tables回車。4.再開乙個新...

mysql忘記root密碼

第一步 執行如下命令,停止mysql服務 net stop mysql 第二步 啟動mysql 進入到mysql的安裝目錄bin,找到mysqld.exe 或mysqld nt.exe 執行 mysqld.exe skip grant tables 或mysqld nt skip grant tab...