美文网首页
Zabbix监控Java

Zabbix监控Java

作者: 袁先生的笔记 | 来源:发表于2017-04-07 13:42 被阅读0次

环境

系统:CentOS 6.6

准备

java配置

  • tomcat

    • 修改启动脚本
      # vim catalina.sh
      CATALINA_OPTS="$CATALINA_OPTS \
      -Dcom.sun.management.jmxremote \
      -Dcom.sun.management.jmxremote.port=10049 \
      -Dcom.sun.management.jmxremote.authenticate=false \
      -Dcom.sun.management.jmxremote.ssl=false"
      
    • 重启
      # ./shutdown.sh
      # ./startup.sh
      
  • java
    添加启动参数,并启动

    # java -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=10049 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false
    

zabbix web配置

  • 添加host
  • 配置JMX interfaces,端口10049
  • 添加模板Template JMX Generic

相关文章

网友评论

      本文标题:Zabbix监控Java

      本文链接:https://www.haomeiwen.com/subject/gslhattx.html