标签:set string tar 字段 update str root use 密码验证
绕过密码验证登录mysql后,修改密码
1.修改mysql配置文件
vi /etc/my.cnf
在文件中新增一行skip-grant-tables
2.重启mysql服务
service mysql restart
3.无需密码登录mysql
mysql -uroot -p
4.修改密码
在MySQL 5.7 password字段已从mysql.user表中删除,新的字段名是“authenticalion_string”.(5.7之前字段是"password")
选择数据库:use mysql;
更新root的密码:update user set authentication_string=password(‘新密码‘) where user=‘root‘ and Host=‘localhost‘;
刷新权限:flush privileges;
5.退出mysql,再次编辑mysql配置文件,将之前新增的那一行注释掉,重启mysql服务
标签:set string tar 字段 update str root use 密码验证
原文地址:https://www.cnblogs.com/lroy/p/12445936.html