不久前自學(xué)完完sql,下了mysql8.0.17,安裝配置好后探索著,想著用root賬戶登上去能不能刪除root賬戶呢,然后就想給自己一巴掌,,,
如何快速恢復(fù)root:
1.關(guān)閉mysql服務(wù):win+R鍵鍵入services.msc,找到mysql服務(wù),點(diǎn)擊stop;
2.刪除data文件夾及其文件:進(jìn)入mysql文件夾,找到data文件夾并刪除;
3.初始化mysql:再次進(jìn)入services.msc,運(yùn)行mysql服務(wù);cmd窗口進(jìn)入mysql\bin文件路徑,運(yùn)行mysqld --initialize --console 結(jié)果類似如下:
2019-08-07T02:08:11.300849Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is
deprecated. Please use --explicit_defaults_for_timestamp server option (see doc
umentation for more details).
2019-08-07T02:08:11.724874Z 0 [Warning] InnoDB: New log files created, LSN=45790
2019-08-07T02:08:12.024891Z 0 [Warning] InnoDB: Creating foreign key constraint
system tables.
2019-08-07T02:08:12.056893Z 0 [Warning] No existing UUID has been found, so we a
ssume that this is the first time that this server has been started. Generating
a new UUID: 35611a71-b8b8-11e9-8e24-28d24409926b.
2019-08-07T02:08:12.064893Z 0 [Warning] Gtid table is not ready to be used. Tabl
e 'mysql.gtid_executed' cannot be opened.
2019-08-07T02:08:12.076894Z 1 [Note] A temporary password is generated for root@
localhost: QTpg4Y!sh:dk
注意加粗語句中就有暫時(shí)生成的root賬戶密碼;
4.cmd運(yùn)行mysql:鍵入mysql -u root -p+root
密碼;注意:p是password的縮寫,按上面的例子就應(yīng)鍵入:mysql -u root -pQTpg4Y!sh:dk
-p和密碼一定要連在一起才有效,中間沒有空格;
5.修改臨時(shí)root密碼:運(yùn)行sql語句:alter user root@localhost identified by ' root密碼 '
; 注意:密碼要包含在 英文單引號(hào) ‘ ' 中,不然無效報(bào)錯(cuò),末尾分號(hào) ;也要寫。
6.查詢是否成功:運(yùn)行sql語句: select user from mysql.user; 成功顯示root賬戶;
注意:本方法雖快捷有效,但會(huì)刪除所有數(shù)據(jù)庫文件,就是data文件夾里的數(shù)據(jù)庫。其他什么添加skip-grant-tables來越過登錄認(rèn)證的試過,對(duì)于8.0.17版的無效了。
總結(jié)
以上所述是小編給大家介紹的Window下如何恢復(fù)被刪除的Mysql8.0.17 Root賬戶及密碼,希望對(duì)大家有所幫助!
您可能感興趣的文章:- MySQL5.7 mysqldump備份與恢復(fù)的實(shí)現(xiàn)
- MySQL 兩種恢復(fù)數(shù)據(jù)的方法
- MySQL單表恢復(fù)的步驟
- MySQL數(shù)據(jù)庫備份恢復(fù)實(shí)現(xiàn)代碼
- MySQL使用mysqldump+binlog完整恢復(fù)被刪除的數(shù)據(jù)庫原理解析
- mysql數(shù)據(jù)備份與恢復(fù)實(shí)現(xiàn)方法分析
- shell腳本實(shí)現(xiàn)mysql定時(shí)備份、刪除、恢復(fù)功能
- Mysql大型SQL文件快速恢復(fù)方案分享
- Mysql的Binlog數(shù)據(jù)恢復(fù):不小心刪除數(shù)據(jù)庫詳解
- 從MySQL全庫備份中恢復(fù)某個(gè)庫和某張表的方法
- MySQL 基于時(shí)間點(diǎn)的快速恢復(fù)方案