jconsole连接远程服务器
Posted 青春无限坑!
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jconsole连接远程服务器相关的知识,希望对你有一定的参考价值。
本地服务器:win10,安装JDK8,jmeter工具所在地
远程服务器:centos7.9 ,tomcat8.5,java1.8
配置方法
1、修改远程服务器的~/tomcat/bin/catalina.sh 文件
在
# ----- Execute The Requested Command -----------------------------------------
上面增加
CATALINA_OPTS="$CATALINA_OPTS -Djava.rmi.server.hostname=127.0.0.1 -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=12345 -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false"
注:
红色部分可修改。
-Dcom.sun.management.jmxremote.ssl=false 是否使用ssl验证,为了方便,此处选择false
-Dcom.sun.management.jmxremote.authenticate=false" 是否使用用户名和密码验证,此处也选择false
2、重启远程服务器中的tomcat
3、本地win服务器找到jdk安装路径,bin下面的jconsole.exe。双击启动,如图
4、选择远程进程。输入远程服务器的ip和端口号。注意:此处输入我们第一步骤中,配置的ip和端口号。因为我们没有配置用户名和密码,此处直接点击链接即可
5、选择不安全的连接
6、连接成功如下图
以上是关于jconsole连接远程服务器的主要内容,如果未能解决你的问题,请参考以下文章