多语言展示
当前在线:620今日阅读:86今日分享:14

MySQL忘记密码??怎么办

修改MySQL的密码的方法有很多种,虽然说可以用mysqladmin或者登录到mysql用set password等一系列方法进行重置,但是这些方法都是基于知道原始密码的前提下,现在连初始密码都不知道,只能采取停止数据库服务跳过权限表认证的方式暂时登录然后修改密码了
工具/原料
1

mysql-5.7.19-winx64

2

Windows10

方法/步骤
1

在Windows10运行或者搜索栏输入services.msc,出现“服务”菜单,如下图所示

2

右键点击“服务”菜单,以管理员身份运行

3

找到MySQL服务,右键点击然后“停止”

4

同样以管理员的身份打开一个cmd窗口,输入mysqld --skip-grant-tables,其实就是跳过权限表认证的方式启动mysql,不要关闭这个cmd窗口

5

再打开另外一个cmd窗口,同样是进入到mysql的bin目录,如果已经将mysql的bin目录配置到环境变量中,可以直接输入mysql命令C:\mysql-5.7.19-winx64\bin>mysqlWelcome to the MySQL monitor.  Commands end with ; or \g.Your MySQL connection id is 3Server version: 5.7.19 MySQL Community Server (GPL)Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or itsaffiliates. Other names may be trademarks of their respectiveowners.Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.mysql> use mysql;Database changedmysql> update user set authentication_string=password('123456') where user='root';Query OK, 1 row affected, 1 warning (0.00 sec)Rows matched: 1  Changed: 1  Warnings: 1mysql> flush privileges;Query OK, 0 rows affected (0.01 sec)mysql>执行完成之后退出

6

右键点击“服务”菜单,以管理员身份运行,找到MySQL服务右键点击然后“启动”,mysql的root密码重置完成

注意事项

这个操作有一个弊端,就是必须停mysql数据库的服务,如果是比较重要的库需要谨慎操作

推荐信息