1.vim /etc/my.cnf
[mysqld]
skip-grant-tables ##追加此行,跳过权限表,

2.重启mysql
systemctl restart mysqld

3.mysql 登陆mysql
mysql> use mysql;
mysql> UPDATE user SET Password = password ( 'zha123456' ) WHERE User = 'root' ;
mysql> flush privileges ;
mysql> quit

4.恢复配置文件my.cnf
vim /etc/my.cnf
[mysqld]
skip-grant-tables ##去掉此行,继续校验权限表,

5.重启mysql
systemctl restart mysqld

相关文章:

  • 2021-10-06
  • 2022-12-23
  • 2022-12-23
  • 2021-11-22
  • 2022-12-23
  • 2021-12-15
  • 2021-07-05
猜你喜欢
  • 2022-12-23
  • 2021-07-07
  • 2021-08-15
  • 2021-08-31
  • 2021-07-08
  • 2021-07-06
  • 2022-02-20
相关资源
相似解决方案