1.配置:
vim tomcat/conf/ tomcat-users.xml
<role rolename="manager"/>
<role rolename="manager-gui"/>
<role rolename="admin"/>
<role rolename="admin-gui"/>
<user username="tomcat" password="tomcat" roles="admin-gui,admin,manager-gui,manager"/>
2.登录到tomcat-status的页面:
tomcat-status的页面3.相关信息:
tomcat-status主要的内容:
1)服务器信息:
tomcat的版本,java的版本,java的厂商,系统类型,系统kernel版本,系统位数(32/64),主机名,IP地址
2)jvm(内存大小)
剩余内存,总共内存,最大内存
3)tomcat的运行模式:
bio:默认的模式,性能非常低下,没有经过任何优化处理和支持.
nio:nio(new I/O),是Java SE 1.4及后续版本提供的一种新的I/O操作方式(即java.nio包及其子包)。Java nio是一个基于缓冲区、并能提供非阻塞I/O操作的Java API,因此nio也被看成是non-blocking I/O的缩写。它拥有比传统I/O操作(bio)更好的并发运行性能。
apr:安装起来最困难,但是从操作系统级别来解决异步的IO问题,大幅度的提高性能
Max threads: 最大线程数默认200
Current thread count: 当前线程数
Current thread busy: 当前线程忙碌数
Keeped alive sockets count: socket长连接数
Max processing time: 最大执行时间
Processing time: CPU消耗总时间
Request count: 请求数
Error count: 错误数
Bytes received: 接收字节数
Bytes sent: 发送字节数
HTTP相关信息:(P、S、F、R、K)为请求阶段的几种状态。
p:Parse and prepare request 暂停和准备强求
S:service 服务
F:finish 完成
R:Ready 准备
K: Keepalive 长连接
网友评论