当前位置:网站首页>MySQL忘记密码怎么办
MySQL忘记密码怎么办
2022-07-31 04:47:00 【geejkse_seff】
mysql忘记密码是常用的事情,那么如何解决它呢?
1、首先将MySQL的服务关闭,两种方法:
(1)打开命令行cmd输入net stop mysql命令即可关闭MySQL服务。
(2)找到服务,找到MYSQL56(我电脑装的是mysql5.6,所以这里是MYSQL56)然后关闭
2、打开MySQL安装路径,进入到bin目录中,两种方法:
(1)在目录输入cmd,即可以命令行窗口,且所在的目录也是bin目录下
(2)或者打开命令行,输入cd F:mysqlin回车
3、去掉认证检查
mysqld --skip-grant-tables
在上一步的cmd窗口,输入mysqld --skip-grant-tables然后回车
这个命令是去掉认证检查。为下面的操作做准备,请勿关闭!!!
4、进入到mysql容器
打开新的命令行,输入mysql回车
mysql
5、验证数据库是否登录成功
show databases;
数据库说明成功登陆。
6、输入 使用mysql数据库。
use mysql;
mysql数据库就是保存用户名和密码。
7、查看所有表
show tables;
user表存放用户名,密码,权限等等账户信息。
8、 查看账户信息
select user,host,password from user;
9、 更改root密码,密码为123456
update user set password=password('123456') where user='root' and host='localhost';
10、再次查看账户信息
select user,host,password from user;
可以看到密码已被修改。
11、在Navicat验证数据库。
这样就可以解决忘记数据库密码的问题啦~~~
先自我介绍一下,小编13年上师交大毕业,曾经在小公司待过,去过华为OPPO等大厂,18年进入阿里,直到现在。深知大多数初中级java工程师,想要升技能,往往是需要自己摸索成长或是报班学习,但对于培训机构动则近万元的学费,着实压力不小。自己不成体系的自学效率很低又漫长,而且容易碰到天花板技术停止不前。因此我收集了一份《java开发全套学习资料》送给大家,初衷也很简单,就是希望帮助到想自学又不知道该从何学起的朋友,同时减轻大家的负担。添加下方名片,即可获取全套学习资料哦
边栏推荐
- MySQL 8.0.30 GA
- Unity打灵狐者
- ERP生产作业控制 金蝶
- 高等数学---第九章二重积分
- Unity Fighter
- 行业落地呈现新进展 | 2022开放原子全球开源峰会OpenAtom OpenHarmony分论坛圆满召开
- Understanding of the presence of a large number of close_wait states
- volatile内存语义以及实现 -volatile写和读对普通变量的影响
- Solved (the latest version of selenium framework element positioning error) NameError: name 'By' is not defined
- STM32HAL库修改Hal_Delay为us级延时
猜你喜欢
idea工程明明有依赖但是文件就是显示没有,Cannot resolve symbol ‘XXX‘
MySQL数据库增删改查(基础操作命令详解)
Error EPERM operation not permitted, mkdir 'Dsoftwarenodejsnode_cache_cacach Two solutions
Hand in hand to realize the picture preview plug-in (3)
数字经济时代的开源数据库创新 | 2022开放原子全球开源峰会数据库分论坛圆满召开
ERROR 2003 (HY000) Can't connect to MySQL server on 'localhost3306' (10061)
MySQL数据库必会的增删查改操作(CRUD)
[C language] General method of base conversion
开源社区三十年 | 2022开放原子全球开源峰会开源社区三十年专题活动圆满召开
Vue项目通过node连接MySQL数据库并实现增删改查操作
随机推荐
MySQL数据库必会的增删查改操作(CRUD)
mysql基础知识(二)
Open Source Database Innovation in the Digital Economy Era | 2022 Open Atom Global Open Source Summit Database Sub-Forum Successfully Held
ERROR 1819 (HY000) Your password does not satisfy the current policy requirements
Puzzle Game Level Design: Reverse Method--Explaining Puzzle Game Level Design
Can't load /home/Iot/.rnd into RNG
【线性神经网络】softmax回归
Blockbuster | foundation for platinum, gold, silver gave nameboards donors
Regarding the primary key id in the mysql8.0 database, when the id is inserted using replace to be 0, the actual id is automatically incremented after insertion, resulting in the solution to the repea
ERROR 2003 (HY000) Can't connect to MySQL server on 'localhost3306' (10061)
Visual studio shortcuts that improve efficiency, summary (updated from time to time)
Go语学习笔记 - 处理超时问题 - Context使用 | 从零开始Go语言
剑指offer专项突击版第15天
MySQL数据库备份
MATLAB/Simulink & & STM32CubeMX tool chain completes model-based design development (MBD) (three)
扫雷游戏(c语言写)
聚变云原生,赋能新里程 | 2022开放原子全球开源峰会云原生分论坛圆满召开
.NET-9.乱七八糟的理论笔记(概念,思想)
visual studio 那些提高效率的快捷键,总结(不时更新)
el-image标签绑定点击事件后没有有用