jconsole远程连接,必须配置jmx连接参数
linux 启动项目时,添加参数
java
-djava.rmi.server.hostname=10.160.13.111 #远程服务器ip,即本机ip
-dcom.sun.management.jmxremote #允许jmx远程调用
-dcom.sun.management.jmxremote.port=3214 #自定义jmx 端口号
-dcom.sun.management.jmxremote.ssl=false # 是否需要ssl 安全连接方式
-dcom.sun.management.jmxremote.authenticate=false #是否需要秘钥
-jar test.jar
启动项目
[root@host-10-160-13-111 hccloud-test]# java -djava.rmi.server.hostname=10.160.13.111 -dcom.sun.management.jmxremote -dcom.sun.management.jmxremote.port=3214 -dcom.sun.management.jmxremote.ssl=false -dcom.sun.management.jmxremote.authenticate=false -jar test.jar
打开jconsole
服务器ip,端口,是设置jmx参数时的值,用户名密码是连接服务器时的用户名密码
连接成功
可以监控远程服务了