-
MySQL中关于useSSL的警告问题【解决方案】
问题描述
- 问题描述:web开发中,在使用MySQL数据库时,有时候会遇到下面这样的警告描述,原因是当前版本的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.
解决办法
- 配置数据库URL时,添加参数useSSL=true或者false即可,如下面红色标记部分
- jdbc.url=jdbc:mysql://localhost:3306/mysql?useSSL=false&useUnicode=true&characterEncoding=UTF-8
-
相关阅读:
Centos7下rc.local文件开机不执行…
Centos7添加密码安全策略
Java8 时间日期类操作
XML配置spring session jdbc实现session共享
Spring Boot 2.x以后static下面的静态资源被拦截
外观模式
组合设计模式
Java线程池源码解析
观察者模式
Java使用POI解析Excel表格
-
原文地址:https://www.cnblogs.com/Twittery/p/14481394.html
Copyright © 2020-2023
润新知