我正在尝试通过JMX启用我的核心Java应用程序以实现远程访问。 但是,有两个限制使它变得比它应该更难。
a)我无权更改在linux机器上启动应用程序的脚本。因此,我无法将任何“jmxremote”参数传递给jvm。
b)我指定的远程端口(com.sun.management.jmxremote.port = xxxx
)很可能未打开,我无法修改脚本以尝试另一个打开的端口。我必须自动完成。
我尝试通过编写一个类来解决这些限制,设置所有必需的jmxremote参数以及找到“免费”端口。
public class JmxRemoteConnectionHelper{
@Override
public void init( ) throws Exception{
InetAddress address = InetAddress.getLocalHost();
String ipAddress = address.getHostAddress();
String hostname = address.getHostName();
String port = String.valueOf( getFreePort( ) );
System.setProperty("java.rmi.server.hostname", ipAddress );
System.setProperty("com.sun.management.jmxremote", "true" );
System.setProperty("com.sun.management.jmxremote.authenticate", "false" );
System.setProperty("com.sun.management.jmxremote.ssl", "false" );
System.setProperty("com.sun.management.jmxremote.port", port );
}
private final int getFreePort( ){
**//seedPort is passed in the constructor**
int freePort = seedPort;
ServerSocket sSocket = null;
for( int i=ZERO; i<PORT_SCAN_COUNTER; i++ ){
try{
freePort = freePort + i;
sSocket = new ServerSocket( freePort );
//FOUND a free port.
break;
}catch( Exception e ){
//Log
}finally{
if( sSocket != null ){
try{
sSocket.close();
sSocket = null;
}catch(Exception e ){
//Log
}
}
}
}
return freePort;
}
}
如下图所示,我,然后通过spring初始化它。
<bean id="JmxRemoteConnection" class="JmxRemoteConnectionHelper" init-method="init" />
<bean id="mbeanServer" class="org.springframework.jmx.support.MBeanServerFactoryBean" depends-on="JmxRemoteConnection" />
<bean id="exporter" class="org.springframework.jmx.export.MBeanExporter" lazy-init="false" >
<property name="assembler" ref="assembler"/>
<property name="namingStrategy" ref="namingStrategy"/>
<property name="autodetect" value="true"/>
<property name="server" ref="mbeanServer"/>
</bean>
<bean id="jmxAttributeSource" class="org.springframework.jmx.export.annotation.AnnotationJmxAttributeSource"/>
<bean id="assembler" class="org.springframework.jmx.export.assembler.MetadataMBeanInfoAssembler">
<property name="attributeSource" ref="jmxAttributeSource"/>
</bean>
<bean id="namingStrategy" class="org.springframework.jmx.export.naming.MetadataNamingStrategy" lazy-init="true">
<property name="attributeSource" ref="jmxAttributeSource"/>
</bean>
要测试,我在Windows机器上启动应用程序。它正确启动。但是,当我在同一个框上调出JConsole并尝试通过“远程进程”(ip:port)进行连接时,我得到“连接被拒绝” 底部的消息。
我怀疑JMX代理没有看到我正在设置的任何远程系统属性。
我正在使用 JDK 1.6 。
答案 0 :(得分:5)
由于您已经在使用Spring,我认为您应该看看使用ConnectorServerFactoryBean
是否可以执行您要执行的操作。我从来没有必要启动远程JMX服务器,但它看起来就是那个对象可以为你做什么。
答案 1 :(得分:2)
在此过程中查看启用jmx的答案:
Is it possible to enable remote jmx monitoring programmatically?
要查找空闲端口,只需将LocateRegistry.createRegistry()包装在循环中,该循环将使用新端口号重试,直到成功为止。 当然,您必须将最终端口号传达给任何需要连接的东西。或者,在主机上运行jstatd应该可以发现它