0

有人可以帮助我解决 JConsole 和 Websphere&7 的以下问题吗?我试图使用 JConsole 连接到 Websphere 7。但是 JConsole 无法连接到 Websphere 7。

我做了以下更改 - 1) management.properties com.sun.management.jmxremote.port=9999 com.sun.management.jmxremote.authenticate=false com.sun.management.jmxremote.ssl=false 2) 设置 management.properties JVM 通用参数中的文件路径。

问候, SR

4

2 回答 2

1

如果您想要 WebSphere MBean,这个对我有用:

关键是正确配置类路径和安全性。

在一行中:

jconsole -J-Dwas.install.root=C:/was61 -J-Djava.ext.dirs=C:/was61/plugins;C:/was61/plugins/com.ibm.ws.security.crypto_6.1.0;C :/was61/lib;C:/was61/java/jre/lib/ext -J-Dcom.ibm.SSL.ConfigURL="file:../../properties/ssl.client.props" -J-Dcom .ibm.CORBA.ConfigURL="file:../../properties/sas.client.props" 服务:jmx:iiop://host:port/jndi/JMXConnector

其中端口 = 引导端口前:(2809)

设置 sas 和 ssl 道具时要小心。

罗伯特

于 2011-02-19T05:49:29.663 回答
0

另一个问题中的这个答案对我有用:如何在 Websphere 中启用 JMX?

但是,这只允许访问 Platform MBean,而不是 WebSphere MBean。

于 2011-02-03T15:35:39.687 回答