小編給大家分享一下MySQL 5.7及8.0版本數(shù)據(jù)庫的root密碼遺忘怎么辦,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
成都創(chuàng)新互聯(lián)成立十多年來,這條路我們正越走越好,積累了技術(shù)與客戶資源,形成了良好的口碑。為客戶提供成都做網(wǎng)站、網(wǎng)站制作、成都外貿(mào)網(wǎng)站建設(shè)、網(wǎng)站策劃、網(wǎng)頁設(shè)計(jì)、國際域名空間、網(wǎng)絡(luò)營銷、VI設(shè)計(jì)、網(wǎng)站改版、漏洞修補(bǔ)等服務(wù)。網(wǎng)站是否美觀、功能強(qiáng)大、用戶體驗(yàn)好、性價(jià)比高、打開快等等,這些對于網(wǎng)站建設(shè)都非常重要,成都創(chuàng)新互聯(lián)通過對建站技術(shù)性的掌握、對創(chuàng)意設(shè)計(jì)的研究為客戶提供一站式互聯(lián)網(wǎng)解決方案,攜手廣大客戶,共同發(fā)展進(jìn)步。注:MySQL5.7破解root密碼,跳過密碼認(rèn)證登錄到數(shù)據(jù)庫,直接修改表中的密碼即可,但是MySQL 8.0則不可以這樣修改root密碼,需要跳過密碼認(rèn)證登錄到數(shù)據(jù)庫后,先將root密碼設(shè)置為空,然后才可以登錄到數(shù)據(jù)庫,修改root密碼。
1、遺忘MySQL 5.7數(shù)據(jù)庫的root密碼解決辦法
[root@mysql01 ~]# mysql --version #確定MySQL版本 mysql Ver 14.14 Distrib 5.7.28, for linux-glibc2.12 (x86_64) using EditLine wrapper [root@mysql01 ~]# vim /etc/my.cnf #編輯主配置文件 [mysqld] #在mysqld這行下寫入下面內(nèi)容 skip-grant-tables .................#省略部分內(nèi)容 [root@mysql01 ~]# systemctl restart mysqld #重啟MySQL服務(wù),使配置文件生效 [root@mysql01 ~]# mysql -uroot #跳過密碼驗(yàn)證,直接登錄數(shù)據(jù)庫 #修改root密碼為pwd@123,并刷新權(quán)限 mysql> use mysql; mysql> update user set authentication_string = passwoord('pwd@123') where user = 'root'; mysql> flush privileges; #刷新權(quán)限 mysql> exit #配置密碼驗(yàn)證,使用新密碼登錄 [root@mysql01 ~]# vim /etc/my.cnf #編輯主配置文件 [mysqld] skip-grant-tables #刪除此行 [root@mysql01 ~]# systemctl restart mysqld #重啟使更改生效 #使用新密碼即可成功登錄 [root@mysql01 ~]# mysql -uroot -ppwd@123
2、遺忘MySQL 8.0數(shù)據(jù)庫的root密碼解決辦法
[root@mysql01 ~]# mysql --version #查看MySQL版本 mysql Ver 8.0.18 for linux-glibc2.12 on x86_64 (MySQL Community Server - GPL) [root@mysql01 ~]# vim /etc/my.cnf #編輯主配置文件 [mysqld] #在mysqld這行下寫入下面內(nèi)容 skip-grant-tables .................#省略部分內(nèi)容 [root@mysql01 ~]# systemctl restart mysqld #重啟MySQL服務(wù),使配置文件生效 [root@mysql01 ~]# mysql -uroot #跳過密碼驗(yàn)證,直接登錄數(shù)據(jù)庫 #將root密碼設(shè)置為空 mysql> use mysql mysql> update user set authentication_string='' where user = 'root'; mysql> flush privileges; mysql> exit #開啟密碼驗(yàn)證并重新登錄數(shù)據(jù)庫 [root@mysql01 ~]# vim /etc/my.cnf #編輯主配置文件 [mysqld] skip-grant-tables #刪除此行 [root@mysql01 ~]# systemctl restart mysqld #重啟使更改生效 [root@mysql01 ~]# mysql -uroot #直接登錄數(shù)據(jù)庫 mysql> alter user root@localhost identified by 'pwd@111'; mysql> flush privileges; mysql> exit #使用新密碼進(jìn)行登錄測試 [root@mysql01 ~]# mysql -uroot -ppwd@111
看完了這篇文章,相信你對“MySQL 5.7及8.0版本數(shù)據(jù)庫的root密碼遺忘怎么辦”有了一定的了解,如果想了解更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!