mysql 重置密码

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

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

2、进入Mysql:[ ~]# 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

相关推荐