Tomcat参数配置.doc
《Tomcat参数配置.doc》由会员分享,可在线阅读,更多相关《Tomcat参数配置.doc(5页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、Tomcat内存、连接数等性能参数设置(2009-12-01 23:48:17) 转载标签: 杂谈关键字: tomcat 性能调优 中间件服务器默认参数不适合生产环境使用,因此需要修改一些参数1、修改启动时内存参数、并指定JVM时区(在windows server 2008 下时间少了8个小时):在Tomcat上运行j2ee项目代码时,经常会出现内存溢出的情况,解决办法是在系统参数中增加系统参数:window下, 在catalina.bat最前面:set JAVA_OPTS=-XX:PermSize=64M -XX:MaxPermSize=128m -Xms512m -Xmx1024m一定加在
2、catalina.bat最前面。linux下,在catalina.sh最前面增加:JAVA_OPTS=-XX:PermSize=64M -XX:MaxPermSize=128m -Xms512m -Xmx1024m -Duser.timezone=Asia/Shanghai 注意:前后二者区别,有无set,有无双引号。2、线程池配置(Tomcat6下)使用线程池,用较少的线程处理较多的访问,可以提高tomcat处理请求的能力。使用方式:首先。打开/conf/server.xml,增加最大线程500(一般服务器足以),最小空闲线程数20,线程最大空闲时间60秒。然后,修改节点,增加executo
3、r属性,如:注意:可以多个connector公用1个线程池。3、调整连接相关Connector的参数:参数说明: connectionTimeout - 网络连接超时,单位:毫秒。设置为0表示永不超时,这样设置有隐患的。通常可设置为30000毫秒。 keepAliveTimeout - 长连接最大保持时间(毫秒)。此处为15秒。 maxKeepAliveRequests - 最大长连接个数(1表示禁用,-1表示不限制个数,默认100个。一般设置在100200之间) the maximum number of HTTP requests that can be held in the pipel
4、ine until the connection is closed by the server. Setting this attribute to 1 disables HTTP/1.0 keep-alive, as well as HTTP/1.1 keep-alive and pipelining. Setting this to -1 allows an unlimited number of pipelined or keep-alive HTTP requests. If not specified, this attribute is set to 100. maxHttpHe
5、aderSize - http请求头信息的最大程度,超过此长度的部分不予处理。一般8K。 URIEncoding - 指定Tomcat容器的URL编码格式。 acceptCount - 指定当所有可以使用的处理请求的线程数都被使用时,可以放到处理队列中的请求数,超过这个数的请求将不予处理,默认为10个。defines the maximum queue length for incoming connection requests when all possible request processing threads are in use. Any requests received whe
6、n the queue is full are refused. The default value is 10. disableUploadTimeout - 上传时是否使用超时机制 enableLookups - 是否反查域名,取值为:true或false。为了提高处理能力,应设置为false bufferSize - defines the size (in bytes) of the buffer to be provided for input streams created by this connector. By default, buffers of 2048 bytes a
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- Tomcat 参数 配置
限制150内