安裝完mysql5.7後忘記了密碼,須要重置root密碼;
第一步:修改配置文件免密碼登陸mysqlmysql
vim /etc/my.cnf ##在my.cnf的[mysqld]字段加入 skip-grant-tables ## 重啓mysql服務 service mysqld restart
第二步:免密碼登陸mysqllinux
mysql -u root ##password直接回車
第三步: 給root重置密碼爲空sql
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 '#新密碼#';
功德圓滿,修改爲功vim