mysql密码恢复

来源:互联网 发布:mac检测 腾讯 编辑:程序博客网 时间:2024/05/22 12:33

破解过程

1、停止mysql服务(以管理员身份,在cmd命令行下运行)使用如下命令:

net stop mysql


2、.使用命令启动mysql数据库,命令如下

mysqld --skip-grant-tables 或者 mysqld-nt --skip-grant-tables



3.新开一个cmd窗口,进行如下命令操作

1、mysql -uroot
2、update mysql.user set password=password('1234') where user='root';

如图


4、打开任务管理器,停止mysql,mysqld进程,使用net start mysql启动mysqld服务,就可以使用root用户 root密码进入数据库了


0 0
原创粉丝点击