忘記mysql的root密碼

2021-08-30 12:48:44 字數 683 閱讀 4759

回到windows命令列模式(切換到mysql的安裝目錄)下,執行如下命令(藍色文字為手工輸入的命令部分,紅色文字為回顯的部分):

d:\program files\mysql\bin>mysql -u root mysql -p123456789\\*舊密碼,因為在phpmyadmin裡修改的新密碼還沒有正式生效,-p和舊密碼中間沒有空格符*\welcome to the mysql monitor. commands end with ; or \g.

your mysql connection id is 1042 to server version: 4.1.10-nt

type 'help;' or '\h' for help. type '\c' to clear the buffer.

mysql> update user set password=password('新密碼') where user='root';\\*為root帳戶更新新密碼*\\

query ok, 1 row affected (0.00 sec)

rows matched: 2 changed: 1 warnings: 0

mysql> flush privileges;

query ok, 0 rows affected (0.00 sec)

mysql> \q

bye

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...