首页 > 数据库技术 > 详细

MySQL_密码重置

时间:2020-10-25 19:58:19      阅读:35      评论:0      收藏:0      [点我收藏+]

MySQL密码重置

1、停止mysql

1)以系统管理员身份运行cmd

net stop mysql.

2)手动停止服务

 技术分享图片

 

 

 

3、切换到MySQL安装路径下:D:\WAMP\MySQL-5.6.36\bin;如果已经配了环境变量,可以不用切换了。

4、在命令行输入

mysqld -nt --skip-grant-tables

 

这里可能会有警告,不过可以继续运行

5、再打开一个cmd,输入

mysql -uroot -p

 

6Enter进入数据库。

use mysql 1)update user set password=password("123456") where user="root";//设置新密码

2)mysql5.7password列改成了authentication_string:

update mysql.user set authentication_string=password(‘root‘) where user=‘root‘ flush privileges;   //刷新权限

 

OK

MySQL_密码重置

原文:https://www.cnblogs.com/rychh/p/13874780.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!