码迷,mamicode.com
首页 > 数据库 > 详细

MySQL建立SSL连接警告

时间:2019-07-11 16:56:27      阅读:456      评论:0      收藏:0      [点我收藏+]

标签:property   connect   server   根据   sql   信任   收获   jdbc   verify   

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.626+和5.7.6+的要求,如果没有设置显式选项,默认情况下必须建立SSL连接。对于不使用SSL的现有应用程序,ValuyServer证书属性设置为“false”。您需要通过设置USESL= false来显式禁用SSL,或者设置USELS=真,并为服务器证书验证提供信任存储。

 

解决办法:

public static final String DBURL="jdbc:mysql://localhost:3306/yang?verifyServerCertificate=false&useSSL=false";

在连接mysql的url上加上参数:   verifyServerCertificate=false&useSSL=false

 

 

认真看过此篇的小伙伴,如果对你有收获,请点击旁边的小手推荐一下,如果有误,欢迎指正,谢谢!

版权声明:此篇为本人原创,转载请标明出处https://www.cnblogs.com/YQian/p/11171030.html

我的博客园地址:https://www.cnblogs.com/YQian/

 

MySQL建立SSL连接警告

标签:property   connect   server   根据   sql   信任   收获   jdbc   verify   

原文地址:https://www.cnblogs.com/YQian/p/11171030.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!