博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
TOMCAT APR
阅读量:4106 次
发布时间:2019-05-25

本文共 1672 字,大约阅读时间需要 5 分钟。

如何在WINDOW下配置TOMCAT APR:
 
APR是什么呢,(Tomcat can use the Apache Portable Runtime to provide superior scalability, performance, and better integration with native server technologies. )
Windows下的安装配置与使用
1、先去 http://tomcat.heanet.ie/native/ 下载编译好的 tcnative-1.dll 文件
2、把tcnative-1.dll文件放在Tomcat的bin目录下
然后启动TOMCAT,如果看到以下信息:
2008-8-31 17:28:59 org.apache.coyote.http11.Http11AprProtocol start
信息: Starting Coyote HTTP/1.1 on http-8080
2008-8-31 17:28:59 org.apache.coyote.ajp.AjpAprProtocol start]则配置成功
 
然后你可以用APACHE的AB命令测试下效果.
  ab -n 1000 -c 300 http://localhost:8080/turbine/index.jsp
 
相关APR的参数配置可以参考以下文档:
         http://tomcat.apache.org/tomcat-5.5-doc/apr.html
 
 
 
 
如何查看TOMCAT的并发访问量:
  我们进入TOMCAT服务管理页面(http://localhost:8080/manager/status),可以看到下面这段文字
http-8080
Max threads: 1000 Min spare threads: 0 Max spare threads: 0 Current thread count: 303 Current thread busy: 234 Keeped alive sockets count: 0
Max processing time: 23531 ms Processing time: 29287.717 s Request count: 2980 Error count: 0 Bytes received: 0.00 MB Bytes sent: 12.61 MB
 
Current thread count: 303  这个参数则代表当前TOMCAT的并发访问量
这是我TOMCAT服务器的配置:
 
XML/HTML code
1
2
3
4
5
6
7
<
Connector 
port
=
"8080" 
maxHttpHeaderSize
=
"8192" 
pollerSize
=
"10025"
               
maxThreads
=
"1000" 
minSpareThreads
=
"25" 
maxSpareThreads
=
"75"
               
enableLookups
=
"false" 
redirectPort
=
"8443" 
acceptCount
=
"100"
      
compression
=
"on" 
compressionMinSize
=
"2048"   
compressableMimeType
=
"text/html,text/xml,text/javascript,text/css,text/plain" 
               
connectionTimeout
=
"20000" 
disableUploadTimeout
=
"true" 
sendfileSize
=
"2048" 
/>
 
 
将TOMCAT日志更改为LOG4J日志输出
   把commons-logging.jar,log4j-1.2.13.jar的两个JAR拷贝到tomcat_home/common/lib下面.
  然后在将log4j.properties拷贝到tomcat_home/common/classes下面

转载地址:http://tynsi.baihongyu.com/

你可能感兴趣的文章
C#入门
查看>>
查找最大值最小值
查看>>
杨辉三角
查看>>
冒泡排序法
查看>>
C#中ColorDialog需点两次确定才会退出的问题
查看>>
16、Memento 备忘录模式
查看>>
Java基础篇(一)
查看>>
数据库
查看>>
mysql update与group by
查看>>
nginx反代 499 502 bad gateway 和timeout
查看>>
linux虚拟机安装tar.gz版jdk步骤详解
查看>>
python猜拳游戏
查看>>
python实现100以内自然数之和,偶数之和
查看>>
python数字逆序输出及多个print输出在同一行
查看>>
python九九乘法表(详解)
查看>>
ESP8266 WIFI数传 Pixhaw折腾笔记
查看>>
苏宁产品经理面经
查看>>
百度产品经理群面
查看>>
去哪儿一面+平安科技二面+hr面+贝贝一面+二面产品面经
查看>>
element ui 弹窗在IE11中关闭时闪现问题修复
查看>>