当前位置:Gxlcms > 数据库问题 > mysql 重置密码

mysql 重置密码

时间:2021-07-01 10:21:17 帮助过:26人阅读

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配置   执行   修改密码   use   ini   flush   alt   window   修改   

人气教程排行