关于连接数据库链接中参数useSSL的报错:Communications link failure

报错详情

1.因为链接中没有参数useSSL报错

Establishing SSL connection without server’s identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn’t set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to ‘false’. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification.

2.因为链接中useSSL=ture报错

Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure

关于连接数据库链接中参数useSSL的报错:Communications link failure_第1张图片

useSSL=true指的使用JDBC跟你的数据库连接的时候,你的JDBC版本与MYSQL版本不兼容,MYSQL版本更高一些,在连接语句后加上"useSSL=true",就可以连接数据库更高版本了.

原因

将链接中没有参数useSSL的报错翻译

不建议在没有服务器身份验证的情况下建立 SSL 连接。 根据 MySQL 5.5.45+、5.6.26+ 和 5.7.6+ 的要求,如果未设置显式选项,则必须默认建立 SSL 连接。 为了符合不使用 SSL 的现有应用程序,verifyServerCertificate 属性设置为“false”。 您需要通过设置 useSSL=false 来显式禁用 SSL,或者设置 useSSL=true 并为服务器证书验证提供信任库。

解决方法

这两种报错都可以通过useSSL=false来解决。

你可能感兴趣的:(jdbc,数据库,mysql,java)