当前位置:网站首页>node连接mysql数据库报错:Client does not support authentication protocol requested by server
node连接mysql数据库报错:Client does not support authentication protocol requested by server
2022-08-03 22:11:00 【潮汐未见潮落】
问题描述
使用 node.js 的 mysql 模块,连接本地数据库,报错
const db = mysql.createPool({
host:'127.0.0.1' , // 数据库的 IP 地址
user:'root', // 登录数据库的 账号
password:'111111', // 登录数据库的 密码
database:'my_db_01' // 指定操作的的数据库
})
ER_NOT_SUPPORTED_AUTH_MODE: Client does not support authentication protocol requested by server; consider upgrading MySQL client
问题原因
新旧版本密码算法不同引起的错误,只需要设置下密码方式为 mysql_native_password 就可以。
解决步骤
管理员身份运行命令提示符启动 mysql ,执行以下命令
注意:‘111111’ 改成自己的数据库密码
ALTER USER 'root'@'localhost' IDENTIFIED BY '111111' PASSWORD EXPIRE NEVER;
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '111111';
FLUSH PRIVILEGES;
错误解决
文章如有错误,恳请大家提出问题,本人不胜感激 。 不懂的地方可以评论,我都会 一 一回复
文章对大家有帮助的话,希望大家能动手点赞鼓励,大家未来一起努力 长路漫漫,道阻且长
边栏推荐
- UVa 437 - The Tower of Babylon(白书)
- 2022年全国职业院校技能大赛网络安全 B模块 B-1任务一:主机发现与信息收集 国赛原题
- 决策树、GBDT、XGBOOST树的可视化
- 《强化学习周刊》第56期:GraphIRL、REDEEMER & 眼科强化学习的潜在研究
- pikachu Over permission
- 目标检测技术研究现状及发展趋势
- 21天打卡挑战学习MySQL——《Window下安装MySql》第一周 第三篇
- E-commerce data warehouse ODS layer-----log data loading
- 基于支持向量机的网络⼊侵检测系统的全面调查和分类
- 483. Smallest Good Base
猜你喜欢
随机推荐
一些思考:腾讯股价为何持续都低
CAS:1797415-74-7_TAMRA-Azide-PEG-Biotin
Flink--Join以及Flink函数
《强化学习周刊》第56期:GraphIRL、REDEEMER & 眼科强化学习的潜在研究
Teach a Man How to Fish - How to Query the Properties of Any SAP UI5 Control by Yourself Documentation and Technical Implementation Details Demo
易基因|RNA m5C甲基化测序(RNA-BS)技术介绍
Optimize the query (work in progress)
FVCOM 3D Numerical Simulation of Hydrodynamics, Water Exchange, Dispersion and Transport of Oil Spills丨FVCOM Model Watershed, Numerical Simulation Method of Marine Water Environment
VLAN实验
嵌入式系统:概述
授人以渔 - 如何自行查询任意 SAP UI5 控件属性的文档和技术实现细节试读版
noip初赛
pikachu Over permission
What is Adobe?
中国企业构建边缘计算解决方案的最佳实践
LabVIEW代码生成错误 61056
113. Teach a Man how to fish - How to query the documentation and technical implementation details of any SAP UI5 control property by yourself
【day1】
How to deal with commas in the content of the CSV file of the system operation and maintenance series
Go开发工具GoLand V2022.2 来了——Go 工作区重大升级