美文网首页
node 连接mysql报错'08004'的问题

node 连接mysql报错'08004'的问题

作者: talent_ray | 来源:发表于2018-07-24 16:18 被阅读0次

Client does not support authentication protocol requested by server; consider upgrading MySQL client
找了很久的问题,原因是没有配置数据库初始密码,在mysql命令行执行以下命令即可

ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '你的密码';
SELECT plugin FROM mysql.user WHERE User = 'root';

相关文章

网友评论

      本文标题:node 连接mysql报错'08004'的问题

      本文链接:https://www.haomeiwen.com/subject/mehymftx.html