- 连接 mysql 出现Client does not suppo
- 连接mysql容器报错Client does not suppo
- 连接Mysql8报错:Client does not suppo
- Navicat连接Mysql报错:Client does not
- Nodejs连接Mysql报错:Error: Cannot en
- 'Client does not support authent
- Navicat连接Mysql时出现1251错误解决方案
- Client does not support authenti
- nivicat连接新安装的Mysql8.0 Client doe
- navicat 连接 mysql 出现Client does n
问题
在初始化小程序数据库时遇到了Client does not support authentication protocol requested by server ; consider upgrading MySQL client
错误

解决方案
use mysql;
alter user ‘root’@’localhost’ identified with mysql_native_password by ‘你的密码,若无密码为空
’;
flush privileges;

问题得以解决:

网友评论