当前位置:网站首页>有效解决MySQL报错:ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: NO/YES)
有效解决MySQL报错:ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: NO/YES)
2022-08-02 19:53:00 【捌椒】
废话少说,下面直接给出完整的解决办法。
第一步:关闭服务
- 打开终端,输入:
net stop mysql
- 或者,
控制面板
→ \rightarrow →系统安全
→ \rightarrow →管理工具
→ \rightarrow →服务
→ \rightarrow →`找到并停止MySQL服务
第二步:Windows 用户修改my.ini
文件(Linux用户则修改my.cnf
配置文件)
- 找到MySQL安装目录,编辑 my.ini,在
[mysqld]
下添加skip-grant-tables
,保存即可。
第三步:重启MySQL:
- 进入终端:
net start mysql
- 或者
控制面板
→ \rightarrow →系统安全
→ \rightarrow →管理工具
→ \rightarrow →服务
→ \rightarrow →`找到并开启MySQL服务
第四步:进入Mysql
- 终端输入:
mysql -u root -p
不用输入密码,直接回车
(出现Enter Password 也一样直接回车,即可登陆成功); - 或者输入终端输入:
mysql
也可以,二者任选其一。
第五步:修改root的密码:
- 输入:
use mysql
- 更改密码:
update user set authentication_string=password('新密码') where user='root';
flush privileges;
注意,该两行的;
不要忘记输入- 退出:
quit;
第六步:再次重启mysql
- net stop mysql
- net start mysql
第七步:测试
- 使用root进行登录:mysql -u root -p
- Enter Password>‘新密码’
边栏推荐
- 【LeetCode】622. 设计循环队列
- golang刷leetcode 经典(10) tire树与ac自动机
- AI Scientist: Automatically discover hidden state variables of physical systems
- Lvm逻辑卷
- Flutter自带国际化适配自动生成方案
- Shell: conditional statements
- APP自动化uiautomator2获取toast
- The so-called fighting skill again gao also afraid of the chopper - partition, depots, table, and the merits of the distributed
- Silver circ: letter with material life insurance products should be by the insurance company is responsible for the management
- 基于 outline 实现头像剪裁以及预览
猜你喜欢
Parse common methods in the Collection interface that are overridden by subclasses
SQL Server实现group_concat功能
【Psychology · Characters】Issue 1
4 kmiles join YiSheng group, with more strong ability of digital business, accelerate China's cross-border electricity full domain full growth
溜不溜是个问题
VMware虚拟机无法上网
4KMILES加入艾盛集团,以更强劲的数字商务能力,加速中国跨境电商的全域全效增长
7月29-31 | APACHECON ASIA 2022
B站HR对面试者声称其核心用户都是生活中的Loser
成为黑客不得不学的语言,看完觉得你们还可吗?
随机推荐
ABAP语法小复习
SQL 嵌套 N 层太长太难写怎么办?
SCANIA SCANIA OTL tag is introduced
技术分享 | Apache Linkis 快速集成网页IDE工具 Scriptis
基于“无依赖绝对定位”实现的圣杯三栏布局
J9数字货币论:识别Web3新的稀缺性:开源开发者
golang刷leetcode 经典(10) tire树与ac自动机
日志框架学习
Redis cluster configuration
golang刷leetcode动态规划(12)最小路径和
Flutter with internationalized adapter automatically generated
Kali命令ifconfig报错command not found
「面试必会」这应该是最有深度的TCP三次握手、四次挥手细节讲解
基于 flex 布局实现的三栏布局
使用位运算实现加减乘除(+、-、*、/)及比较器的用法
实现fashion_minst服装图像分类
【Psychology · Characters】Issue 1
ShapeableImageView 的使用,告别shape、三方库
MaxCompute 近期发布上线的版本的 SQL 引擎新功能参数化视图有什么优势?
2022-07-28