Mac IDEA 连不上MySQL(Navicat 客户端)

我的 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;

Mac IDEA 连不上MySQL(Navicat 客户端)_第1张图片

你可能感兴趣的:(IDEA)