mysql忘记密码时修改密码的方法

停掉mysqld服务

service mysqld stop

然后使用

--skip-grant-tables &命令启动mysql

这样就可以直接登录了

# mysql

然后修改密码

update user set password=password("root") where user="root";

flush privileges;

quit


停掉mysql服务

mysqladmin shutdown


将mysql配置文件my.cnf中的

skip-grant-tables 这句注释掉

重新启动就OK了

你可能感兴趣的:(mysql,修改密码,password,mysqld_safe)