1 问题
运行项目连接Mysql时出现警告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 方法
- 问题翻译:不建议在没有服务器身份验证的情况下建立SSL连接。根据MySQL 5.5.45+、5.6.26+和5.7.6+的要求,如果未设置explicit选项,默认情况下必须建立SSL连接。为了符合不使用SSL的现有应用程序,verifyServerCertificate属性设置为“false”。您需要通过设置useSSL=false显式禁用SSL,或者设置useSSL=true并为服务器证书验证提供信任库。
- 虽然这一警告不会影响程序的运行,但可能存在一些潜在的隐患,所以需要及时进行排查。
- 根据提示可知只需要在数据库信息链接后面加上useSSL=false或者设置useSSL=true并为服务器证书验证提供信任库。一般选择第一种禁用SSL来解决。
3.1找到数据库信息设置:
3.2在配置信息中填上useSSL=false
3 结语
该问题虽然不会影响任何程序的进行,但是为了安全与代码的完整性,在运行时,需将一切问题解决,使程序完美的跑起来。
实习编辑:李欣容
稿件来源:深度学习与文旅应用实验室(DLETA)