博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Tomcat监控
阅读量:6592 次
发布时间:2019-06-24

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

   1: enable
JMX management for tomcat
      Tomcat doesn't enable the
jmx management interface by default,so we have to enable it first before using it. it is very easy to do, all we need to do is add the following arguments into the script "catalina.bat".
    set CATALINA_OPTS=-Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=8060 -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false
   Notes: 8060 is the rmi port for
JMX MBeanServer. 
   2: start tomcat
   3: start  jconsole  to view  all the  beans  in  tomcat container;

     start-->run--> jconsole ; a window will be poped up:

     select advance. then input url: service:jmx:rmi:///jndi/rmi://localhost:8060/jmxrmi
     don't put the username and password . because we didn't enable the ssl.
      click connect . now you can view all the mbean in tomcat server. and can easily   manage the mbean.

 

但是这在1.5以上肯定没问题,但是1.4我发现不好用,目前没找到办法

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

你可能感兴趣的文章
如何解决ORA-12547: TNS:lost contact错
查看>>
android学习记录(三)百度地图错误---只有一个电话显示帧,没有地图内容。
查看>>
UVA 1386 - Cellular Automaton(循环矩阵)
查看>>
BZOJ2794 : [Poi2012]Cloakroom
查看>>
中兴月容纳杯 数字配对
查看>>
.NET开发知识体系
查看>>
JAVA在IO流量汇总
查看>>
Swift——(两)Swift访问元组
查看>>
https封装类,支持get/post请求
查看>>
微信支付之扫码支付开发:我遇到的坑及解决办法(附:Ecshop 微信支付插件)
查看>>
【Eclipse】安装subclipse的Eclipse插件
查看>>
最终的解决方案感到担心初中——现在,你可以移动
查看>>
jquery选择器(原创)<四>
查看>>
使用Eclipse+Maven+Jetty构建Java Web开发环境(几个教程综合集成2014发行)
查看>>
位运算
查看>>
微信公众号-增加智能自动回复的功能--使用图灵机器人
查看>>
pip 直接安装tar.gz zip文件包 (windows linux mac 可用)
查看>>
名单(两)——基本操作单向链表(创、删、印、节点统计数)
查看>>
Swift - 使用MapKit显示地图,并在地图上做标记
查看>>
图像局部特征点检测算法综述【修正排版】
查看>>