共计 1505 个字符,预计需要花费 4 分钟才能阅读完成。
自动写代码机器人,免费开通
这篇文章给大家分享的是有关 Window 下怎样恢复被删除的 Mysql8.0.17 Root 账户及密码的内容。丸趣 TV 小编觉得挺实用的,因此分享给大家做个参考,一起跟随丸趣 TV 小编过来看看吧。
如何快速恢复 root:
1. 关闭 mysql 服务:win+ R 键键入 services.msc, 找到 mysql 服务,点击 stop;
2. 删除 data 文件夹及其文件:进入 mysql 文件夹,找到 data 文件夹并删除;
3. 初始化 mysql: 再次进入 services.msc, 运行 mysql 服务;cmd 窗口进入 mysql\bin 文件路径, 运行 mysqld –initialize –console 结果类似如下:
2019-08-07T02:08:11.300849Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is
deprecated. Please use –explicit_defaults_for_timestamp server option (see doc
umentation for more details).
2019-08-07T02:08:11.724874Z 0 [Warning] InnoDB: New log files created, LSN=45790
2019-08-07T02:08:12.024891Z 0 [Warning] InnoDB: Creating foreign key constraint
system tables.
2019-08-07T02:08:12.056893Z 0 [Warning] No existing UUID has been found, so we a
ssume that this is the first time that this server has been started. Generating
a new UUID: 35611a71-b8b8-11e9-8e24-28d24409926b.
2019-08-07T02:08:12.064893Z 0 [Warning] Gtid table is not ready to be used. Tabl
e mysql.gtid_executed cannot be opened.
2019-08-07T02:08:12.076894Z 1 [Note] A temporary password is generated for root@
localhost: QTpg4Y!sh:dk
注意加粗语句中就有暂时生成的 root 账户密码;
4.cmd 运行 mysql: 键入 mysql -u root -p+root 密码;注意:p 是 password 的缩写,按上面的例子就应键入:mysql -u root -pQTpg4Y!sh:dk - p 和密码一定要连在一起才有效,中间没有空格;
5. 修改临时 root 密码:运行 sql 语句:alter user root@localhost identified by root 密码 ; 注意:密码要包含在 英文单引号‘中,不然无效报错,末尾分号;也要写。
6. 查询是否成功:运行 sql 语句:select user from mysql.user; 成功显示 root 账户;
注意:本方法虽快捷有效,但会删除所有数据库文件,就是 data 文件夹里的数据库。其他什么添加 skip-grant-tables 来越过登录认证的试过,对于 8.0.17 版的无效了。
感谢各位的阅读!关于“Window 下怎样恢复被删除的 Mysql8.0.17 Root 账户及密码”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!
向 AI 问一下细节