标签:mysql root password找回 user表空
上篇博文介绍了关于MySQL中的root密码忘记的情况下如何找回,可是楼主遇到更无语的是使用—skip-grant-tables选项来启动MySQL服务后,准备修改密码时却发现User表为空,
update user set Password=password(‘newpassword‘) where User=‘root’;
输入修改密码后得到
0 rows affected rows matched :0 changed:0
有网友说创建root并赋予权限
grant all on *.* to root@‘localhost‘ identified by ‘password‘; grant all on *.* to root@‘%‘ identified by ‘password‘;
但是然并卵啊,使用—skip-grant-tables登录之后,创建用户提示错误啊,提示在—skip-grant-tables无法创建用户。
ERROR 1290 (HY000): The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement
后来试了下flush privileges 一下,
mysql> flush privileges; Query OK, 0 rows affected (0.01 sec)
ok,再执行添加root用户就可以了,查询User表发现里面已经有数据了,哈哈,搞定,继续修改密码,重启生效
标签:mysql root password找回 user表空
原文地址:http://ezioauditor.blog.51cto.com/8742351/1737003