mysql 5.7 忘记密码

mysql忘记密码


方法一:

  • vi /etc/my.cnf
  • 在[mysqld]下加上 skip-grant-tables,如:
[mysqld] 
skip-grant-tables 
  • 重启mysql
service mysqld restart 
  • 登陆mysql后就可以修改密码了
mysql -u root

update mysql.user set authentication_string=PASSWORD('root') where User='root'; 
flush privileges; 
  • 然后改回my.cnf重启mysql。

方法2:

  • 先暂停mysq l以不检查权限的方式启动
bin/mysqld_safe  --skip-grant-tables & 
  • 登陆mysql后就可以修改密码了
mysql -u root

update mysql.user set authentication_string=PASSWORD('root') where User='root'; 
flush privileges; 
  • 然后重启mysql就ok了
service mysqld restart 
  • 登录后任何操作都会有这个提示:
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds 
to your MySQL server version for the right syntax to use near '' at line 1
  • 还需要刷新一次密码才行
set password for root@localhost = password('root'); 
flush privileges;
  • PS:网上找的修改密码方式,为了方便在这里做个记录.

你可能感兴趣的:(数据库)