千家信息网

mysql中root密码忘记了怎么办

发表于:2025-01-19 作者:千家信息网编辑
千家信息网最后更新 2025年01月19日,小编给大家分享一下mysql中root密码忘记了怎么办,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!让mysql不载入权限
千家信息网最后更新 2025年01月19日mysql中root密码忘记了怎么办

小编给大家分享一下mysql中root密码忘记了怎么办,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!

让mysql不载入权限表,命令:mysqld --skip-grant-tables

命令:mysqld --skip-grant-tables(windows)
mysqld_safe --skip-grant-tables user=mysql或者/etc/init.d/mysql start --mysqld --skip-grant-tables (linux)

Windows平台例子:
C:\Users\duansf>mysqld --skip-grant-tables

打开另外一个命令窗口,进入mysql的交互界面
C:\Users\duansf>mysql -uroot -p
Enter password: ******
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 15
Server version: 5.5.13 MySQL Community Server (GPL)

Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.


Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.


mysql>

用update语句重置root密码。
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
| test |
+--------------------+
4 rows in set (0.07 sec)

mysql> use mysql
Database changed


mysql> update user set Password=password('123456') where user='root';
Query OK, 1 row affected (0.00 sec)
Rows matched: 1 Changed: 1 Warnings: 0


mysql> commit;
Query OK, 0 rows affected (0.00 sec)


mysql> flush privileges;
Query OK, 0 rows affected (0.24 sec)


重新登陆验证密码修改是否成功
C:\Users\duansf>mysql -u root -p123456
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 16
Server version: 5.5.13 MySQL Community Server (GPL)

Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.


Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.


Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql>

以上是"mysql中root密码忘记了怎么办"这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注行业资讯频道!

密码 命令 篇文章 怎么办 内容 成功 不怎么 例子 大部分 平台 更多 权限 界面 知识 行业 语句 资讯 资讯频道 频道 参考 数据库的安全要保护哪些东西 数据库安全各自的含义是什么 生产安全数据库录入 数据库的安全性及管理 数据库安全策略包含哪些 海淀数据库安全审计系统 建立农村房屋安全信息数据库 易用的数据库客户端支持安全管理 连接数据库失败ssl安全错误 数据库的锁怎样保障安全 数据库平台构建 软件开发人员工资资本化 广东白山网络安全协会 rd440服务器 asp数据库是否存在 ssr酸酸乳服务器订阅 崇明区什么是网络安全服务至上 网络安全手抄报文字100字 中省网络安全信息化工作讲话 长沙网络安全教育基地 网络安全战士绘画 公司网络安全治理机构是 在网络安全会议讲话 网络安全法 案例 造谣 如何开一台我的世界服务器 浙江衢橙网络技术有限公司 网络安全宣传节目观后感200字 服务器登录不输入密码 确保网络安全的原因 服务器可以远程管理吗 开州区咨询软件开发流程常见问题 数据库创建用户无法登录 潮汕软件开发定制 济南京座网络技术有限公司 上海运营网络技术怎么样 数据库建模工具免费中文版 泰安联想服务器代理哪个系列好 盛世汇通网络技术咨询中心 超融合服务器一般价格是多少 我的世界好一点的生存服务器
0