mysql 重置密码

Posted idz188

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 重置密码相关的知识,希望对你有一定的参考价值。

mysql 重置密码(版本5.7之前)

1、修改Mysql配置文件:vi /etc/my.cnf(注:windows下修改的是my.ini)。在[mysqld]后面任意一行添加“skip-grant-tables”用来跳过密码验证的过程。
重启Mysql:

2、进入Mysql:[root@localhost ~]# mysql -uroot -p
use mysql;
update user set password=password("新密码") where user="root";
flush privileges;
quit


3、再去编辑一下my.cnf配置文件,去掉skip-grant-tables。
重启Mysql,用你修改后的密码登录Mysql。


5.7版本之后 修改密码 再执行上面第3步
mysql> alter user "root"@"localhost" identified by "新密码"; --方法1
mysql> update user set authentication_string=password("新密码") where user="root"; -- 方法2
mysql> flush privileges;
mysql> quit

以上是关于mysql 重置密码的主要内容,如果未能解决你的问题,请参考以下文章

mysql忘记密码后重置密码的方法(mysql 8.0.25重置密码)

重置mysql密码

MySQL密码忘记,如何跳过密码参数,重置密码

mysql 忘记密码,重置密码,mysql.user表为空的解决办法

mysql重置密码

mysql 忘记root密码,重置密码,及重置密码后权限问题不能登录的解决方案