使用SSL的Wildfly 13 JMX

时间:2018-07-19 08:22:09

标签: ssl wildfly jmx

我正在使用启用了JMX的Wildfly 13独立版:

<remoting-connector/>

管理界面正在通过https:

<management-interfaces>
  <http-interface security-realm="ManagementRealm">
    <http-upgrade enabled="true"/>
      <socket-binding https="management-https"/>

已设置SSL:

<security-realm name="ManagementRealm">
  <server-identities>
    <ssl>
      <keystore path=.../>
    </ssl>
  </server-identities>

当我启动JConsole并尝试连接

service:jmx:remote+http://localhost:9993

我没有联系。

当我将绑定恢复为http时,我可以连接到service:jmx:remote+http://localhost:9990

是否可以使用remote+http协议使用带有SSL的JMX?

谢谢

-伊沃(Ivo)

1 个答案:

答案 0 :(得分:0)

应为service:jmx:remote+https://<server>:9993