jetty idle timeout expired:30000/30000 ms

简介:

报错:

java.io.IOException: java.util.concurrent.TimeoutException: Idle timeout expired: 30000/30000 ms 

 at org.eclipse.jetty.server.HttpConnection.blockingWrite(HttpConnection.java:449) 

 at org.eclipse.jetty.server.HttpConnection.send(HttpConnection.java:389) 

 at org.eclipse.jetty.server.HttpChannel.write(HttpChannel.java:638) 

 at org.eclipse.jetty.server.HttpOutput.write(HttpOutput.java:199)

 at org.springframework.util.FileCopyUtils.copy(FileCopyUtils.java:113) 

 at org.springframework.web.servlet.re

解决:

vi start.ini

#http.timeout=3000(注释该行之后测试仍然有该报错)

vi etc/jetty-http.xml(把30000ms改成1200000ms)

<Set name="idleTimeout"><Property name="http.timeout" default="1200000"/></Set>



本文转自 guowang327 51CTO博客,原文链接:http://blog.51cto.com/guowang327/1760784,如需转载请自行联系原作者

相关文章
|
SQL 网络协议 关系型数据库
mysql 连接超时wait_timeout问题解决
com.mysql.jdbc.CommunicationsException: The last packet successfully received from the server was58129 seconds ago.The last packet sent successfully to the server was 58129 seconds ago, which is longer than the server configured value of 'wait_timeout'. You should consider either expiring and/or tes
|
7月前
|
测试技术
Could not proxy command to the remote server. Original error: timeout of 240000ms exceeded 的解决办法
Could not proxy command to the remote server. Original error: timeout of 240000ms exceeded 的解决办法
245 0
|
SQL druid 关系型数据库
MySQL连接超时时间wait_timeout导致间歇性报错:communication link failure
MySQL连接超时时间wait_timeout导致间歇性报错:communication link failure
800 1
|
7月前
|
关系型数据库 MySQL Java
MySQL中wait_timeout与interactive_timeout详解
MySQL中wait_timeout与interactive_timeout详解
1525 0
PG14中的idle_session_timeout
PG14中的idle_session_timeout
127 0
|
SQL Java 关系型数据库
MySQL之wait_timeout和interactive_timeout参数
MySQL支持的最大连接数是有上限的,如果你的MySQL Server有大量的闲置连接,不仅会白白消耗内存,而且如果连接一直在累加而不断开,最终会达到MySQL Server的连接上限数,报‘to many connections’错误。
4899 0
|
关系型数据库 MySQL 测试技术
【MySQL】浅析interactive_timeout和wait_timeout
一 前言   这篇文章源于自己一个无知的提问,作为一个DBA 老鸟,实在汗颜 。如图,修改wait_timeout参数之后 并没有及时生效,于是乎去跑到技术支持群里问了。
5029 1
|
网络协议
TCP Provider The semaphore timeout period has expired
我们一数据库服务器上有个作业最近几天偶尔会遇到下面错误(敏感信息已做处理),主要是报“TCP Provider: The semaphore timeout period has expired. [SQLSTATE 07008] (Error 121)  OLE DB provider "SQLNCLI" for linked server "(null)" returned message "Communication link failure". [SQLSTATE 01000] (Error 7412).  The step failed.”。
2219 0
|
关系型数据库 MySQL 数据库
interactive_timeout和wait_timeout的关系
interactive_timeout = 28800 wait_timeout = 28800 #这两个参数默认都是28800s,即8个小时; interactive_timeout指的是mysql在关闭一个交互的连接之前所要等待的秒数 wait_timeout指的是mysql在关闭一个非交互的连接之前所要等待的秒数 通过mysql客户端连接数据库是交互式连接,通过jdbc连接数据库是非交互式连接 (1)session级别修改interactive_timeout=10,wait_timeout默认不变。
2267 0