windows mysql 忘记密码(解决MySQL忘记密码问题的方法)
类别:数据库 浏览量:260
时间:2021-10-07 00:09:23 windows mysql 忘记密码
解决MySQL忘记密码问题的方法为大家提供的MySQL忘记密码的解决方案,供大家参考,具体内容如下
1.在操作系统windows操作系统,xp或win7.中进入如下目录:
2.停止MySQL服务
|
C:\Program Files\MySQL\MySQL Server 5.5\bin>net stop mysql //MySQL 服务正在停止. //MySQL 服务已成功停止。 |
3.跳过授权给表
你会看到窗口光标在下一行的第一个位置闪烁,这说明已经启动了,不需要管。
4. 新建一个命令行窗口同样进入到e:\mysql5.5\bin目录,启动mysql
|
C:\Program Files\MySQL\MySQL Server 5.5\bin>mysql Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 1 Server version: 5.5.36 MySQL Community Server (GPL) Copyright (c) 2000, 2014, 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> show databases; + --------------------+ | Database | + --------------------+ | information_schema | | mysql | | performance_schema | | test | + --------------------+ 4 rows in set (0.00 sec) |
5.选择mysql数据库
|
mysql> use mysql; Database changed mysql> update user set password = PASSWORD ( 'root' ) where user = 'root' ; Query OK, 2 rows affected (0.00 sec) Rows matched: 2 Changed: 2 Warnings: 0 mysql> flush privileges ; Query OK, 0 rows affected (0.01 sec) |
6.退出mysql终端:
|
mysql> quit Bye |
7.看看那任务管理器中是否有mysqld.exe进程,如有,kill .
8.启动mysql服务器
|
C:\Program Files\MySQL\MySQL Server 5.5\bin>net start mysql //MySQL 服务正在启动 . //MySQL 服务已经启动成功。 |
9.登录mysql服务器
|
C:\Program Files\MySQL\MySQL Server 5.5\bin>mysql -u root -p root Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 1 Server version: 5.5.36 MySQL Community Server (GPL) Copyright (c) 2000, 2014, 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忘记密码了。
以上就是本文的全部内容,希望对大家的学习有所帮助。
您可能感兴趣
- linuxmysql怎么设置root密码(Linux mysql-5.6如何实现重置root密码)
- mysql中数据类型的学习体会(MySQL 实现lastInfdexOf的功能案例)
- mysqlshell日常运维脚本(监控MySQL主从状态的shell脚本)
- MySQL配置文件my.cnf的介绍
- mysql5.7.19下载及安装教程(Apache2.2.16+PHP5.3.3+MySQL5.1.49的配置方法)
- mysql xml转换json(Mysql将查询结果集转换为JSON数据的实例代码)
- mysql出现锁表的原因(导致MySQL做全表扫描的几种情况)
- mysql8.0查询操作(MySQL 8.0 redo log的深入解析)
- dockermysql配置详解(Docker 部署Mysql 服务和Redis 服务的方法)
- mysql对大表千万级如何优化(MySQL 大表的count优化实现)
- iis上搭建php环境(vultr服务器windows server 2012 r2搭建IIS8+PHP+MYSQL+phpMyAdmin运行环境图文教程)
- mysql的limit的分页使用(获取 MySQL innodb B+tree 的高度的方法)
- mysql 索引表空间(MySQL如何构建数据表索引)
- mysql 慢查询排查方法(MYSQL慢查询和日志实例讲解)
- mysql数据备份的几种方式(MySQL数据库备份过程的注意事项)
- laravel数据表配置(laravel实现按月或天或小时统计mysql数据的方法)
- 苹果正式发布自研芯片M1 5nm 32核心 彻底放弃Intel(苹果正式发布自研芯片M1)
- 苹果自研芯片跑分对比 A16芯片排名靠后,M1系列霸榜(苹果自研芯片跑分对比)
- X86处理器的梦魇 苹果M1自研芯片到底有多强(苹果M1自研芯片到底有多强)
- 泰剧《爱欲之神》Boom kitkong和Great合体杂志(泰剧爱欲之神Boomkitkong和Great合体杂志)
- 素人恋爱综艺火药味十足 男生为赢得芳心集体扯头花,真是出好戏(素人恋爱综艺火药味十足)
- 《囧妈》为何受抵制 春节七部影片撤档背后的责任与博弈(囧妈为何受抵制)
热门推荐
- react加载优化(React星星评分组件的实现)
- antdesign接收数据状态(Ant Design Blazor 组件库的路由复用多标签页功能)
- 私有云需要企业自己买服务器吗(企业如何对私有云主机进行管理?)
- python外部如何调嵌套函数(python中嵌套函数的实操步骤)
- python抓取贴吧标题和图片代码(Python实现的爬取百度贴吧图片功能完整示例)
- 怎么给div添加按下去效果(DIV点击折叠实例代码)
- Asp.net操作Word文档
- vuex数据持续化(Vuex数据持久化实现的思路与代码)
- 宝塔linux面板搭专业版(宝塔linux面板怎么卸载?)
- dedecms滚动代码(dedecms使用sql语句调用文章静态链接地址的方法)
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9