mysql破解密码

破解密码

 

先停止 mysqld 服务

# service mysqld stop

编辑 mysql 的配置文件 找到 [mysqld] 字段 添加以下两行并保存退出

skip-grant-tables

skip-networking

再次启动 mysql 在命令行直接输出 mysql 就可以无需密码登录到 mysql 终端

# mysql

在 mysql 终端 通过直接修改授权表的字段 来更改新的 root 密码 还需要 flush 刷新一下

> update mysql.user set authentication_string=password('pwd@123') where user='root' and host='localhost'; 
> flush privileges;

退出终端再次编辑 /etc/my.cnf  删除掉刚刚添加的两个参数或#注释掉(skip-grant-tables skip-networking)

# vim /etc/my.cnf

#skip-grant-tables

#skip-networking

重启 mysqld服务

# service mysqld start

登录数据库时 使用新密码 pwd@123

# mysql -uroot -ppwd@123

 

 

 

 

你可能感兴趣的:(mysql破解密码)