注:MySQL5.7破解root密碼,跳過密碼認證登陸到數據庫,直接修改表中的密碼便可,可是MySQL 8.0則不能夠這樣修改root密碼,須要跳過密碼認證登陸到數據庫後,先將root密碼設置爲空,而後才能夠登陸到數據庫,修改root密碼。mysql
[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這行下寫入下面內容 skip-grant-tables .................#省略部份內容 [root@mysql01 ~]# systemctl restart mysqld #重啓MySQL服務,使配置文件生效 [root@mysql01 ~]# mysql -uroot #跳過密碼驗證,直接登陸數據庫 #修改root密碼爲pwd@123,並刷新權限 mysql> use mysql; mysql> update user set authentication_string = passwoord('pwd@123') where user = 'root'; mysql> flush privileges; #刷新權限 mysql> exit #配置密碼驗證,使用新密碼登陸 [root@mysql01 ~]# vim /etc/my.cnf #編輯主配置文件 [mysqld] skip-grant-tables #刪除此行 [root@mysql01 ~]# systemctl restart mysqld #重啓使更改生效 #使用新密碼便可成功登陸 [root@mysql01 ~]# mysql -uroot -ppwd@123
[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這行下寫入下面內容 skip-grant-tables .................#省略部份內容 [root@mysql01 ~]# systemctl restart mysqld #重啓MySQL服務,使配置文件生效 [root@mysql01 ~]# mysql -uroot #跳過密碼驗證,直接登陸數據庫 #將root密碼設置爲空 mysql> use mysql mysql> update user set authentication_string='' where user = 'root'; mysql> flush privileges; mysql> exit #開啓密碼驗證並從新登陸數據庫 [root@mysql01 ~]# vim /etc/my.cnf #編輯主配置文件 [mysqld] skip-grant-tables #刪除此行 [root@mysql01 ~]# systemctl restart mysqld #重啓使更改生效 [root@mysql01 ~]# mysql -uroot #直接登陸數據庫 mysql> alter user root@localhost identified by 'pwd@111'; mysql> flush privileges; mysql> exit #使用新密碼進行登陸測試 [root@mysql01 ~]# mysql -uroot -ppwd@111
———————— 本文至此結束,感謝閱讀 ————————linux