リモートWebLogicへのビジュアルVM接続

リモートWebLogicへのビジュアルVM接続

weblogicでjmxが有効になっていると思います。私が持っているログでは

<Jun 3, 2015 12:14:08 PM CEST> <Info> <Management> <BEA-141187> <Java     system properties are defined as follows: 
...
com.sun.management.jmxremote.authenticate = false
com.sun.management.jmxremote.port = 8888
com.sun.management.jmxremote.ssl = false
...

そして私はまた

<Jun 2, 2015 12:23:47 PM CEST> <Info> <JMX> <BEA-149512> <JMX Connector Server started at service:jmx:iiop://1.2.3.4:7001/jndi/weblogic.management.mbeanservers.runtime .> 
<Jun 2, 2015 12:23:47 PM CEST> <Info> <JMX> <BEA-149512> <JMX Connector Server started at service:jmx:iiop://1.2.3.4:7001/jndi/weblogic.management.mbeanservers.edit .> 
<Jun 2, 2015 12:23:47 PM CEST> <Info> <JMX> <BEA-149512> <JMX Connector Server started at service:jmx:iiop://1.2.3.4:7001/jndi/weblogic.management.mbeanservers.domainruntime .> 

しかし、ビジュアル VM との接続は不可能です。

add jmx connection私が試したのは

1.2.3.4:7001
1.2.3.4:8888

資格情報の有無にかかわらず、常に同じ結果になります。cannot connect to ...

編集

も試してみましたjmap

pid を持つサーバー上でローカルに動作しています。 を使用するとlocalhost:8888動作しません。

遠隔でjmap -permstat 1.2.3.4:888私に

Attaching to remote server 1.2.3.4:8888, please wait...
Error attaching to remote server: java.rmi.NotBoundException: Not bound: "SARemoteDebugger" (only bound name is "jmxrmi")
sun.jvm.hotspot.debugger.DebuggerException: java.rmi.NotBoundException: Not bound: "SARemoteDebugger" (only bound name is "jmxrmi")
    at sun.jvm.hotspot.RMIHelper.lookup(RMIHelper.java:115)
    at sun.jvm.hotspot.HotSpotAgent.connectRemoteDebugger(HotSpotAgent.java:517)

関連情報