在本教程中,我们将向您展示如何使用jConsole远程访问Tomcat实例,以进行JVM监视。
使用的工具和环境:
- Ubuntu 13 + Tomcat 7 + 192.168.1.142
- Windows 8 + jConsole + 192.168.1.200
1. Tomcat + JMX
要连接jConsole,Tomcat需要启用JMX选项。 要解决此问题,请创建一个{tomcat-folder}\bin\setenv.sh
(如果不存在),然后输入以下值:
-Dcom.sun.management.jmxremote
-Dcom.sun.management.jmxremote.port={port to access}
-Dcom.sun.management.jmxremote.authenticate=false
-Dcom.sun.management.jmxremote.ssl=false
-Djava.rmi.server.hostname={optional, allow what ip to access this Tomcat}
例如,
{tomcat-folder}\bin\setenv.sh
export JAVA_OPTS="-Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=9999 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false"
重新启动Tomcat,现在您可以通过端口9999上的jConsole连接到该Tomcat。
2. jConsole示例
2.1启动jConsole。
c:\>jconsole
2.2选择“远程进程”,输入要连接的Tomcat IP和端口:192.169.1.142:9999。
2.3单击按钮“不安全的连接”。 如果连接成功,将显示Tomcat详细信息。
参考文献
翻译自: https://mkyong.com/tomcat/jconsole-jmx-remote-access-on-tomcat/