JBoss EAP 6.2 JMX server and registry bindings

I am currently trying to configure JSX Suspsystem on JBoss EAP 6.2 to track my web application.

After setting up the console, I could not figure out what should be in the Server / Registry binding fields in accordance with the following screenshot:

Jboss admin console

I tried to add 127.0.0.1:9999 for the local host, but I get an error:

enter image description here

Can anyone suggest that these values ​​should be?

+6
source share
1 answer

Those binding parameters are outdated - they were used with the jmx:1.0 subsystem jmx:1.0 (JBoss AS 7.0). In this version, the correct binding values ​​were socket names ( see Configuration Example ).

JBoss AS 7.3 (therefore EAP 6.2 also) with the jmx:1.3 subsystem uses the remoting-connector and its own management interface as a port. For offline mode, additional configuration is not required, for domain mode, an additional attribute is required for remoting-connector in domain.xml:

 <subsystem xmlns="urn:jboss:domain:jmx:1.1"> <show-model value="true"/> <remoting-connector use-management-endpoint="false"/> </subsystem> 

A step-by-step guide is available on the JBoss dev wiki , however, based on personal experience, be prepared for several problems when connecting to a server running on a remote host.

0
source

Source: https://habr.com/ru/post/973756/


All Articles