1. 程式人生 > >MySQL 5.7 忘記密碼。

MySQL 5.7 忘記密碼。

  1. 修改配置檔案:

[[email protected] mysql]# vim /etc/my.cnf

2.在 [mysqld] 這個模組新增以下內容。

skip-grant-tables

3.重啟 MySQL。

[[email protected] mysql]# ./support-files/mysql.server restart

4.用空密碼進入,回車。

[[email protected] mysql]# mysql

  1. 執行語句。

mysql> alter user 'root'@'localhost' identified by '123456';

6.重新整理:

mysql> flush privileges;

或:
update mysql.user set authentication_string=password('123456') where user='root' and Host = 'localhost';