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

  • 相关阅读:
    感触
    儿子会走了
    OLB(outlook bar)控件开发计划
    又要上班了
    OLB(outlook bar)控件开发计划
    将Vim打造成完美的IDE神器
    简明 Vim 练级攻略
    Java , C , C++ ,PHP, python 运算符优先级对照表
    史上最强的vimrc文件
    vim学习资料汇总
  • 原文地址:https://www.cnblogs.com/lyon91/p/9376218.html
Copyright © 2011-2022 走看看