1.修改 /etc/my.cnf配置文件,在 [mysqld]下添加一行:mysql
skip-grant-tables=1sql
這一行配置讓 mysqld 啓動時不對密碼進行驗證數據庫
2.重啓 mysqld 服務:vim
systemctl restart mysqldspa
3.使用 root 用戶登陸到 mysql:rest
mysql -u rootip
4.切換到mysql數據庫(use mysql),更新 user 表:string
use mysqlio
update mysql.user set authentication_string=password('root') where user='root' ;table
在以前的版本中,密碼字段的字段名是 password,5.7版本改成了 authentication_string
五、退出 mysql,編輯 /etc/my.cnf 配置文件,刪除 skip-grant-tables=1 這一行
vim /etc/my.cnf
六、 重啓mysqld服務,再用新密碼登陸便可
systemctl restart mysqld