解决WARN Establishing SSL connection without servers identity verification is not recommended问题

解决WARN: Establishing SSL connection without server's identity verification is not recommended...问题

一. 异常问题

我在intelliJ idea中进行SSM开发时,在连接mysql数据库的时候,产生了如下警告信息:

Wed Jun 10 21:42:40 IRKT 2020 WARN: 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

警告信息翻译过来的意思如下:

注意:不建议在没有服务器身份验证的情况下建立SSL连接。根据MySQL 5.5.45+、5.6.26+和5.7.6+的要求,如果不设置显式选项,则必须建立默认的SSL连接。您需要通过设置useSSL=false显式地禁用SSL,或者设置useSSL=true并为服务器证书验证提供信任存储.

 

二. 原因分析

原因是在MySQL 5.5.45+、5.6.26+和5.7.6+等版本中,不建议在没有服务器身份验证的情况下建立SSL连接。当然这只是不建议,如果我们非要这么做,也可以无视该警告信息,这只是一个警告信息,不会影响数据库的连接和使用。

三.解决办法

在数据库连接url后面使用useSSL=false属性,就可以去除该黄色警告信息了。

jdbc:mysql://localhost:3306/openapi-admin?characterEncoding=utf8&serverTimezone=Asia/Shanghai&useSSL=false

 

你可能感兴趣的:(异常解决)