我的 MySQL 版本:mysql-8.0.18-macos10.14-x86_64
JDBC 连接但是没有连上,包都没有问题
console 提示:
Client does not support authentication protocol requested by server; consider upgrading MySQL client
客户端不支持服务器请求的认证协议;考虑升级MySQL客户端
解决方案
- 打开终端,进入数据库
mysql -u root -p
- 输入密码(不可见)
- 选择数据库
use mysql;
alter user 'root'@'localhost' identified with mysql_native_password by '你设置的密码**'
flush privileges;