1.1
首先判断CentOS的防火墙,如果开启就关闭
//查看防火墙状态
systemctl status firewalld
//关闭防火墙
systemctl stop firewalld.service
//关闭防火墙开机自启
systemctl disable firewalld.service
而后可以打开DataGrip连接了,如果连接不上执行如下1.2操作
1.2
把datagrip连接设置高级(Advanced)处找到useSSL把这个设置为False
如还是连接不上并报错和1.3错误类似,执行1.3操作。
1.3
如报错如下: Public Key Retrieval is not allowed com.mysql.cj.exceptions.UnableToConnectException: Public Key Retrieval is not allowed
设置 allowPublicKeyRetrieval=true 即可
执行完上述3步骤皆可连接。