When launching a Java application with these options:
-Dcom.sun.management.jmxremote
-Dcom.sun.management.jmxremote.authenticate=false
-Dcom.sun.management.jmxremote.ssl=false
-Dcom.sun.management.jmxremote.port=0
-Dcom.sun.management.jmxremote.local.only=false
Java uses an ephemeral port, which is very useful to avoid collisions.
Is it possible to get the actual port (or connection URL) programmatically from within the application ?
The default port for secure JMX access is 9875 and the default username and password are admin and springsource .
com.sun.management.jmxremote.port. Enables the JMX remote agent and creates a remote JMX connector to listen through the specified port. By default, the SSL, password, and access file properties are used for this connector.
String url = sun.management.ConnectorAddressLink.importRemoteFrom(0)
.get("sun.management.JMXConnectorServer.0.remoteAddress");
System.out.println(url);
This will print URL like
service:jmx:rmi:///jndi/rmi://hostname:57025/jmxrmi
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With