visualVM远程监控:
jvisual中需要增加插件安装。
在执行Java 应用程序的服务器上先生成一个jstatd.all.policy
grant codebase "file:${JAVA_HOME}/lib/tools.jar" { permission java.security.AllPermission; };
然后执行命令
nohup ${JAVA_HOME}/bin/jstatd -J-Djava.rmi.server.hostname=10.111.123.234 -J-Djava.security.policy=jstatd.all.policy -J-Dcom.sun.management.jmxremote.authenticate=false -J-Dcom.sun.management.jmxremote.ssl=false -J-Dcom.sun.management.jmxremote.port=8888 &