Fuse ESB Enterprise uses JMX for reporting runtime metrics and providing some limited management
capabilities. You can configure how the JMX management features are accessed by changing
the properties in the org.apache.karaf.management PID.
Two of the most commonly changed parts of a container's JMX configuration are the RMI port and the JMX URL. You can set these using the properties described in Table 5.
Table 5. JMX Access Properties
| Property | Description |
|---|---|
| rmiRegistryPort | Specifies the RMI registry port. The default value is 1099. |
| serviceUrl | Specifies the the URL used to connect to the JMX server. The default URL is
service:jmx:rmi:///jndi/rmi://localhost:1099/karaf-,
where is the container's name (by
default, root). |
In a standalone container, use any valid JAAS user credentials (see Create a secure JAAS user).
In a fabric, the default username is admin and the
default password is admin.
You can change the username and password used to connect to the JMX server by configuring the JAAS security system as described in Configuring JAAS Security.
On Linux platforms, if you have trouble getting a remote JConsole instance to connect to the JMX server, check the following points:
Check that the hostname resolves to the correct IP address. For example, if the
hostname -icommand returns 127.0.0.1, JConsole will not be able to connect to the JMX server. To fix this, edit the/etc/hostsfile so that the hostname resolves to the correct IP address.Check whether the Linux machine is configured to accept packets from the host where JConsole is running (packet filtering is built in the Linux kernel). You can enter the command,
/sbin/iptables --list, to determine whether an external client is allowed to connect to the JMX server.Use the following command to add a rule to allow an external client such as JConsole to connect:
/usr/sbin/iptables -I INPUT -s
JconsoleHost-p tcp --destination-portJMXRemotePort-j ACCEPTWhere
JconsoleHostis either the hostname or the IP address of the host on which JConsole is running andJMXRemotePortis the IP port exposed by the JMX server.







