Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

WSO2 Carbon which is the underline framework for WSO2 Governance Registry (and other products) now can be monitored using a remote JMX client (such as JConsole) which is behind a firewall.To enable this feature following two properties should be uncommented from the  This feature is enabled by the following configuration at carbon.xml:

Code Block
<Ports>
  <!-- The JMX Ports -->
     <JMX>
         <!--The port RMI registry is exposed-->
         <!--<RMIRegistryPort>9999</RMIRegistryPort>-->
         <!--The port RMI server should be exposed-->
         <!--<RMIServerPort>11111</RMIServerPort>-->
     </JMX>
  </Ports>

These parameters also can be passed at server start up time using the system properties com.wso2.rmiserver.port and com.sun.management.jmxremote.port for RMIServer port and the RMIRegistry port respectively.

...