root恢复密码
1)修改配置文件/etc/my.cnf
-1.添加跳过授权检测
[mysql]
skip-grant-tables
-2.重启服务
systemctl restart mysqld
-3.登录数据库(需要root权限,随便输入密码)
-4.进入后查询mysql.user表结构,找到字段authentication_string,复制字段名,
-5.通过update更改语句,直接修改密码:
update mysql.user set authentication_string=password(“新密码”) where user = “root” and host = “localhost”
flush privileges;#(刷新权限)
-6.恢复配置文件/etc/my.cnf,将跳过检测取消掉,#skip-grant-tables;
-7.重启服务systemctl restart mysqld,然后用新密码登录数据库.
数据库练习----root恢复密码
最新推荐文章于 2024-11-09 15:56:43 发布