免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1862 | 回复: 1
打印 上一主题 下一主题

Tomcat_Broken pipe [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-12-31 11:15 |只看该作者 |倒序浏览
Tomcat_Broken pipe








这个异常是由于以下几个原因造成。
1、客户端再发起请求后没有等服务器端相应完,点击了stop按钮,导致服务器端接收到取消请求。
   通常情况下是不会有这么无聊的用户,出现这种情况可能是由于用户提交了请求,服务器端相应缓慢,比如业务逻辑有问题等原因,导致页面过了很久也没有刷新出来,用户就有可能取消或重新发起请求。
2、Tomcat服务器在接受用户请求的时候,有其自身的处理能力,线程、服务器等各个资源限制,超出Tomcat承载范围的请求,就会被tomcat停掉,也可能产生该错误。
3、linux的线程机制会产生JVM出错的问题,特别是在连接高峰期间经常出现这样的问题,tomcat在linux下也出现类似情况。

Java代码
  1. 1.sun的解释:     
  2. 2.--posted by: cooper     
  3. 3.Below is a clipping from Sun on working around JVM crashes under high     
  4. 4.thread counts in the JVM 1.3 for Linux     
  5. 5.  
  6. 6.On Linux, use a larger signal number for hotspot thread     
  7. 7.suspension/resumption handler. The signal number being used is     
  8. 8.specified by environment variable _JAVA_SR_SIGNUM. Setting it to a     
  9. 9.number larger than SIGSEGV (11) will solve the problem. A good number     
  10. 10.to use is 12, which is SIGUSR2. Using signal 16 to work around the     
  11. 11.problem might have potential problems. So on tcsh, "setenv     
  12. 12._JAVA_SR_SIGNUM 12" can solve the problem.  
  13. sun的解释:  
  14. --posted by: cooper  
  15. Below is a clipping from Sun on working around JVM crashes under high  
  16. thread counts in the JVM 1.3 for Linux  

  17. On Linux, use a larger signal number for hotspot thread  
  18. suspension/resumption handler. The signal number being used is  
  19. specified by environment variable _JAVA_SR_SIGNUM. Setting it to a  
  20. number larger than SIGSEGV (11) will solve the problem. A good number  
  21. to use is 12, which is SIGUSR2. Using signal 16 to work around the  
  22. problem might have potential problems. So on tcsh, "setenv  
  23. _JAVA_SR_SIGNUM 12" can solve the problem.
复制代码
“_JAVA_SR_SIGNUM=12”等号两边必须没有空格,等号是半角

论坛徽章:
0
2 [报告]
发表于 2012-01-03 22:05 |只看该作者
谢谢分享
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP