安装probe

lambda probe是一个tomcat监视工具,我主要用它来监视tomcat的线程情况。
官网: http://www.lambdaprobe.org/d/index.htm
安装过程:
1)war扔到webapps下

2)修改tomcat-users.xml:
<tomcat-users>
  <role rolename="manager"/>
  <role rolename="poweruser"/>
  <role rolename="poweruserplus"/>
  <role rolename="probeuser"/>
  <user username="tomcat" password="liangdian" roles="manager,probeuser,poweruser,poweruserplus"/>
</tomcat-users>


3)设置环境变量
修改conf/catalina.bat(for win)
set JAVA_OPTS=-Dcom.sun.management.jmxremote
或修改conf/catalina.sh(for linux)
export JAVA_OPTS=$JAVA_OPTS" -Dcom.sun.management.jmxremote"
或设置环境变量。

4)访问:
http://localhost:8080/probe
输入刚才配置的用户tomcat,密码liangdian。

你可能感兴趣的:(java,tomcat,linux,REST,sun)