首页 > 代码库 > mysql破解root用户密码总结
mysql破解root用户密码总结
方法一:
1、
/etc/my.cnf
在[mysqld]段中加入
skip-grant-table
2、
重启mysql
3、
直接mysql登录
4、
通过修改权限表方式修改mysql密码(update)
update mysql.user set password=password(‘xxxx‘) where user=‘root‘and host=‘localhost‘;
5、
去除my.cnf中skip-grant-table
6、
重启mysql
7、
使用新密码登录
方法二:
窗口1:
1、停止mysql
2、mysqld_safe --skip-grant-table
窗口2:
1、直接mysql进入
mysql> update mysql.user set password=password(‘123456‘) where user=‘root‘ and host=‘localhost‘;
mysql> flush privileges;
窗口1:
启动mysql
mysql破解root用户密码总结
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。