zoukankan      html  css  js  c++  java
  • 7月27 mysql quartz 连接报错

    一、mysql quartz 连接报错

    org.quartz.JobPersistenceException: Couldn't acquire next trigger: The last packet successfully received from the server was 332,448 milliseconds ago. 
    The last packet sent successfully to the server was 143,973 milliseconds ago. is longer than the server configured value of 'wait_timeout'.
    You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts,
    or using the Connector/J connection property 'autoReconnect=true' to avoid this problem.

    onger than the server configured value of 'wait_timeout'.

    You should consider either expiring and/or testing connection validity before use in your application, increasing the server configured values for client timeouts, or using the Connector/J connection property 'autoReconnect=true' to avoid this problem.

    Couldn't rollback jdbc connection. Communications link failure during rollback().

    通过调整超时参数解决

    mysql> show global variables like '%time%' ;
    SET GLOBAL wait_timeout = 288000;

    或者设置url 连接

    &autoReconnect=true

  • 相关阅读:
    bzoj3110
    idea 设置系列 各种乱码
    vim 系列
    idea 神键
    简单工厂,工厂方法,抽象工厂
    log4 按包进行日志输出
    maven依赖本地宝
    kafka 理论学习
    kafka windows环境搭建 测试
    linux 查找文件的命令
  • 原文地址:https://www.cnblogs.com/lyon91/p/9376218.html
Copyright © 2011-2022 走看看