当前位置:网站首页>Windows10重置MySQL用户密码
Windows10重置MySQL用户密码
2022-08-04 05:30:00 【指剑】
一、写在最前:实验环境
二、停止mysql进程
三、cmd命令行运行mysqld console
四、修改root用户密码
五、重启mysql访问,修改ROOT用户密码
六、登陆验证
参考网站:
https://blog.csdn.net/qq_39220334/article/details/116236537
一、写在最前:实验环境
OS | MySQL版本 |
---|---|
Windows 10 | MySQL 5.7.34 |
二、停止mysql进程
法1: cmd----》 net stop mysql
法2: win+R -- services.msc -----找到MYSQL进程,将其停止
三、cmd命令行运行mysqld console
mysqld --console --skip-grant-tables --shared-memory
四、修改root用户密码为空
mysql -u root -p #若提示输入密码 请直接Enter回车 ,即可进入
use mysql #选择数据库
update user set authentication_string=’’ where user=’root’;#更新root用户认证
quit #退出数据库
五、重启mysql访问,修改ROOT用户密码
关闭之前运行的mysqld console 窗口,重启mysql数据库
一定要关闭mysqld console 窗口,否则无法启动Mysql
关闭之前运行的mysqld console 窗口,重启mysql数据库
一定要关闭mysqld console 窗口,否则无法启动Mysql
关闭mysqld console 窗口后,重启mysql服务
#登录使用命令行登录mysql
mysql -u root -p #若提示输入密码,依旧按Enter回车进入
use mysql
alter user ‘root’@’localhost’ identified by ‘YOUR_PASSWORD’; #修改用户密码,请将YOUR_PASSWORD替换成你自己的密码
exit #退出
六、登陆验证
边栏推荐
- 【论文阅读】Mining Cross-Image Semantics for Weakly Supervised Semantic Segmentation
- Data reading in yolov3 (1)
- (TensorFlow) - detailed explanation of tf.variable_scope and tf.name_scope
- MNIST手写数字识别 —— 从二分类到十分类
- 强化学习中,Q-Learning与Sarsa的差别有多大?
- target has libraries with conflicting names: libcrypto.a and libssl.a.
- 卷积神经网络入门详解
- 【论文阅读】Anchor-Free Person Search
- AIDL communication between two APPs
- 度量学习(Metric learning、损失函数、triplet、三元组损失、fastreid)
猜你喜欢
The pipeline mechanism in sklearn
YOLOV4流程图(方便理解)
Copy攻城狮信手”粘“来 AI 对对联
Copy Siege Lion 5-minute online experience MindIR format model generation
PyTorch
动手学深度学习_卷积神经网络CNN
Use of double pointers
【Copy攻城狮日志】“一分钟”跑通MindSpore的LeNet模型
Jupyter Notebook installed library;ModuleNotFoundError: No module named 'plotly' solution.
yoloV5 使用——训练速度慢,加速训练
随机推荐
【论文阅读】Further Non-local and Channel Attention Networks for Vehicle Re-identification
PCL窗口操作
【CV-Learning】图像分类
图像形变(插值方法)
度量学习(Metric learning)—— 基于分类损失函数(softmax、交叉熵、cosface、arcface)
[Deep Learning 21 Days Learning Challenge] Memo: What does our neural network model look like? - detailed explanation of model.summary()
Android foundation [Super detailed android storage method analysis (SharedPreferences, SQLite database storage)]
MOOSE平台官方第二个例子分析——关于创建Kernel,求解对流扩散方程
JPEG2jpg
MNIST手写数字识别 —— 图像分析法实现二分类
PostgreSQL schema (Schema)
Copy Siege Lion 5-minute online experience MindIR format model generation
数据库的简述与常用操作指南
迅雷关闭自动更新
MFC 打开与保存点云PCD文件
TensorFlow: tf.ConfigProto() and Session
Golang环境变量设置(二)--GOMODULE&GOPROXY
Endnote编辑参考文献
[Copy Siege Lion Log] Flying Pulp Academy Intensive Learning 7-Day Punch Camp-Study Notes
Transformer