mysql5.7重置root密碼

wo0o0o0o0發表於2019-01-20

安裝完mysql5.7後忘記了密碼,需要重置root密碼;

第一步:修改配置檔案免密碼登入mysql

vim /etc/my.cnf  
##在my.cnf的[mysqld]欄位加入
skip-grant-tables

## 重啟mysql服務
service mysqld restart

第二步:免密碼登入mysql

mysql -u root 
##password直接回車

第三步: 給root重置密碼為空

mysql>use mysql;
## mysql 5.7.9以後廢棄了password欄位,欄位名修改為authentication_string
mysql>update user set authentication_string=`` where user=`root`;
## 重新整理資料庫
mysql>flush privileges;

第四步: root重置密碼
  退出mysql,刪除/etc/my.cnf檔案最後的 skip-grant-tables 重啟mysql服務,使用root使用者進行登入,因為上面設定了authentication_string為空,所以可以免密碼登入。

alter user `root`@`localhost` identified by `#新密碼#`;

功德圓滿,修改成功

相關文章