tomcat 或springboot启动项目配置jmx参数与执行命令
Posted mask哥
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tomcat 或springboot启动项目配置jmx参数与执行命令相关的知识,希望对你有一定的参考价值。
1.jconsole远程连接tomcat配置:
-Djava.rmi.server.hostname=192.168.0.2
-Dcom.sun.management.jmxremote
-Dcom.sun.management.jmxremote.port=2011
-Dcom.sun.management.jmxremote.ssl=false
-Dcom.sun.management.jmxremote.authenticate=false
2.springboot项目启动配置jmx:
nohup /usr/bin/java -server -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=30019 -Xms2048m -Xmx2048m -Xmn1280m -XX:PermSize=128m -XX:MaxPermSize=700m -XX:+UseConcMarkSweepGC -XX:+UseCMSCompactAtFullCollection -XX:CMSInitiatingOccupancyFraction=70 -XX:+CMSParallelRemarkEnabled -XX:SoftRefLRUPolicyMSPerMB=0 -XX:+CMSClassUnloadingEnabled -XX:SurvivorRatio=8 -XX:+ExplicitGCInvokesConcurrent -Djava.rmi.server.hostname=192.168.30.139 -Dcom.sun.management.jmxremote.port=8999 -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false -jar /opt/place-alpha/place-alpha.jar > /dev/null 2>&1 &
阅读世界,共赴山海 423全民读书节,邀你共读以上是关于tomcat 或springboot启动项目配置jmx参数与执行命令的主要内容,如果未能解决你的问题,请参考以下文章
tomcat 或springboot启动项目配置jmx参数与执行命令
springboot学习入门简易版一---springboot2.0介绍
SpringBoot配置外部Tomcat项目启动流程源码分析(上)