错误:ER_NOT_SUPPORTED_AUTH_MODE: Client does not support authentication protocol requested by server;

数据库升级后运行旧的系统报错:错误:ER_NOT_SUPPORTED_AUTH_MODE: Client does not support authentication protocol requested by server; consider upgrading MySQL client

 

1. 打开mysql终端

2. 登录

3. 顺序运行

// 123456 替换成你的密码
alter user 'root'@'localhost' identified with mysql_native_password by '123456'; 
flush privileges;

错误:ER_NOT_SUPPORTED_AUTH_MODE: Client does not support authentication protocol requested by server;_第1张图片

4. 重启你的项目

你可能感兴趣的:(后端,毕设系统问题解答,mysql,node连接数据库)