MySQL建立SSL连接警告
Posted yqian
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL建立SSL连接警告相关的知识,希望对你有一定的参考价值。
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连接警告的主要内容,如果未能解决你的问题,请参考以下文章
WARN: 不建议在没有服务器身份验证的情况下建立 SSL 连接
Java连接Mysql数据库警告:Establishing SSL connection witho
SpringBoot------连接mysql时出现警告:Establishing SSL connection without server's identity verification
SpringBoot连接Mysql数据库警告:Establishing SSL connection without server's identity verification is not
jdbc连接mysql时发出警告:WARN: Establishing SSL connection without server's identity verification is not