部署mysql版本项目问题记录

Posted 無玑小姐

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了部署mysql版本项目问题记录相关的知识,希望对你有一定的参考价值。

一,com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure报错

将url从jdbc:mysql://localhost:3306/datashare?useUnicode=true&characterEncoding=utf-8&useSSL=true改为

jdbc:mysql://localhost:3306/datashare?autoReconnect=true&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=CONVERT_TO_NULL&useSSL=false&serverTimezone=UTC

二,The connection property ‘zeroDateTimeBehavior‘ only accepts values of the form: ‘exception‘, ‘round‘ or ‘convertToNull‘. The value ‘CONVERT_TO_NULL‘ is not in this set.报错

具体信息为:

The connection property ‘zeroDateTimeBehavior‘ only accepts values of the form: ‘exception‘, ‘round‘ or ‘convertToNull‘. The value ‘convertToNull ‘ is not in this set.

将zeroDateTimeBehavior=CONVERT_TO_NULL改为zeroDateTimeBehavior=convertToNull 

三,mysql查询时表名大写的时候报错Table ‘datashare.TEST‘ doesn‘t exist

用 root 登录,修改 /etc/my.cnf (注意:以实际 my.cnf 配置文件路径为准)
在 [mysqld] 节点下,加入一行: lower_case_table_names=1(0:大小写敏感;1:大小写不敏感)

重启 MySQL 即可;


以上是关于部署mysql版本项目问题记录的主要内容,如果未能解决你的问题,请参考以下文章

rabbitmq部署及配置与验证

rabbitmq部署及配置与验证

记录一次使用iisnode部署node项目遇到的坑!

记录windows2012部署asp项目

MySQL 迁移至 SQLite 问题记录

项目部署到服务器过程记录