jconsole监控:
1.java启动命令加上参数
java -Djava.rmi.server.hostname=127.0.0.247 -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=2099 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -XX:+UnlockCommercialFeatures -XX:+FlightRecorder -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=./ -Xms8000m -Xmx8000m -Xmn3g -jar xxx-SNAPSHOT.jar
2.进入JAVA_HOME/bin,启动jconsole,填入 server:port 连接即可。
jvirtualvm监控
1.进入 JAVA_HOME/bin目录,新建策略文件:jstatd.all.policy
grant codebase "file:${java.home}/../lib/tools.jar" {
permission java.security.AllPermission;
};
启动jstatd
jstatd -J-Djava.security.policy=jstatd.all.policy
用jvirtualvm连接即可