mysql 使用问题以及解决办法记录

mysql随着版本的升高,链接配置等问题也有所变动。

问题描述:

Sat Dec 21 16:32:32 CST 2019 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并为服务器证书验证提供信任存储

解决办法:

数据库链接的url中添加useSSL=false或者true就可以了

问题描述:

Could not create connection to database server.

翻译结果:无法创建到数据库服务器的连接。

那是因为本地安装的mysql版本与项目中的mysql链接jar包版本不一致导致的。

解决方法:下载相对应的jar包就可以。

问题描述:

The server time zone value '?й???????' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.

服务器的时区价值”?й? ? ? ? ? ? ?未被识别或代表多个时区。如果您想利用时区支持,您必须配置服务器或JDBC驱动程序(通过serverTimezone配置属性)来使用更具体的时区值。

解决办法:

在jdbc连接的url后面加上serverTimezone=UTC或GMT就可以了

完整的jdbc url链接:jdbc:mysql://localhost:3306/test?useSSL=false&serverTimezone=UTC&characterEncoding=utf-8

mysql高版本的jdbc驱动链接也有所改变,之前的链接为db.driver=com.mysql.jdbc.Driver 高版本的变为com.mysql.cj.jdbc.Driver

发布了61 篇原创文章 · 获赞 9 · 访问量 4万+

猜你喜欢

转载自blog.csdn.net/u012129030/article/details/103647709