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.
source share