加载中…
个人资料
  • 博客等级:
  • 博客积分:
  • 博客访问:
  • 关注人气:
  • 获赠金笔:0支
  • 赠出金笔:0支
  • 荣誉徽章:
正文 字体大小:

mysql 8小时解决方案

(2014-05-13 23:04:26)
标签:

jsp

mysql

8小时

it

分类: J2EE
异常:com.mysql.jdbc.exceptions.MySQLNonTransientConnectionException: Connection.close() has already been called. Invalid operation in this state.

ysql 8小时解决方案
 
解决这个问题的办法有三种: 
 
1. 增加 MySQL 的 wait_timeout 属性的值。 
  www.2cto.com  
修改 /etc/mysql/my.cnf文件,在 [mysqld] 节中设置: 
 
Java代码 

http://s7/mw690/001nyTglgy6IQXnW4h876&6908小时解决方案" TITLE="mysql 8小时解决方案" />

 
同一时间,这两个参数只有一个起作用。到底是哪个参数起作用,和用户连接时指定的连接参数相关,缺省情况下是使用wait_timeout。我建议是将这两个参数都修改,以免引起不必要的麻烦。   www.2cto.com  
 
这两个参数的默认值是8小时(60*60*8=28800)。我测试过将这两个参数改为0,结果出人意料,系统自动将这个值设置为。换句话说,不能将该值设置为永久。 
将这2个参数设置为24小时(60*60*24=604800)即可。 
set interactive_timeout=604800; 
set wait_timeout=604800; 
 
2. 减少连接池内连接的生存周期,使之小于上一项中所设置的 wait_timeout 的值。 
修改 c3p0 的配置文件,设置: 
 
# How long to keep unused connections around(in seconds) 
# Note: MySQL times out idle connections after 8hours(28,800seconds) 
# so ensure this value is below MySQL idle timeout 
cpool.maxIdleTime=25200 
在 Spring 的配置文件中:
代码如下:
Java代码  
class="com.mchange.v2.c3p0.ComboPooledDataSource">  
 
 
  
 
3. 定期使用连接池内的连接,使得它们不会因为闲置超时而被 MySQL 断开。 
修改 c3p0 的配置文件,设置:   www.2cto.com  
 
# Prevent MySQL raise exception after a long idle timecpool.preferredTestQuery='SELECT 1'cpool.idleConnectionTestPeriod=18000cpool.testConnectionOnCheckout=true 
修改 Spring 的配置文件:
代码如下:
Java代码  
 
 
 
 
  

4、DBCP配置
minEvictableIdleTimeMillis  1000 * 60 * 30  连接在池中保持空闲而不被空闲连接回收器线程 (如果有)回收的最小时间值,单位毫秒
  1. //set to 'SELECT 1'   
  2. validationQuery "SELECT 1"   
  3. //set to 'true'   
  4. testWhileIdle "true"   
  5. //some positive integer   
  6. timeBetweenEvictionRunsMillis 3600000   
  7. //set to something smaller than 'wait_timeout'   
  8. minEvictableIdleTimeMillis 18000000   
  9. //if you don't mind hit for every getConnection(), set to "true"   
  10. testOnBorrow "true" 

0

阅读 收藏 喜欢 打印举报/Report
  

新浪BLOG意见反馈留言板 欢迎批评指正

新浪简介 | About Sina | 广告服务 | 联系我们 | 招聘信息 | 网站律师 | SINA English | 产品答疑

新浪公司 版权所有