JMX (Java Management Extensions) supplies tools for managing
local and remote applications, system objects, devices, and more.
This article will explain how to remotely manage a web application
using JMX (JSR
160). It will explain the code needed inside of the application to
make it available to JMX clients and will demonstrate how to
connect to your JMX-enabled application using different clients
such as MC4J and
jManage. Securing the
communication layer using the RMI protocol and JNDI is also covered
in detail.
We will review a simple web application that monitors the number
of users that have logged in and exposes that statistic via a
secure JMX service. We will also run multiple instances of this
application and track statistics from all running instances. The
sample web application can be downloaded here. It requires you to have the J2SE 5.0 SDK
installed and your JAVA_HOME environment variable
pointing to the base installation directory. J2SE 5.0 implements
the JMX API, version 1.2, and the JMX Remote API, version 1.0. A
supporting servlet container is also required; I'm using
Apache Tomcat
5.5.12. I'm also using Apache
Ant to build the sample application.
Setting up the Sample Application
Download the sample application and
create a WAR file with ant war (for more
details, see the comments in build.xml). Copy jmxapp.war
to Tomcat's webapps directory. Assuming Tomcat is running on
your local machine on port 8080, the URL for the application will
be:
http://localhost:8080/jmxapp
If you see a login screen that prompts you for your username
and password, all is well.
Tracking Some Meaningful Data
The sample application uses the Struts framework to submit the
login form. Upon submission, the
LoginAction.execute(..) method is executed, which quite
simply checks that the user ID is "hello" and the password is
"world." If both are true, then the login was successful and
control is forwarded to login_success.jsp; if not, then we
go back to the login form. Depending on whether the login was
successful or not, the
incrementSuccessLogins(HttpServletRequest) method or the
incrementFailedLogins(HttpServletRequest) method is
called. Let's have a look at
incrementFailedLogins(HttpServletRequest):
private void incrementFailedLogins
(HttpServletRequest request) {
HttpSession session = request.getSession();
ServletContext context =
session.getServletContext();
Integer num = (Integer)
context.getAttribute(
Constants.FAILED_LOGINS_KEY);
int newValue = 1;
if (num != null) {
newValue = num.intValue() + 1;
}
context.setAttribute(
Constants.FAILED_LOGINS_KEY,
new Integer(newValue));
}
The method increments a FAILED_LOGINS_KEY variable
that is stored in application scope. The
incrementSuccessLogins(HttpServletRequest) method is
implemented in a similar way. The application now keeps track of
how many people successfully logged in and how many failed
authentication. That's great, but how do we access this data?
That's where JMX kicks in.
Creating JMX MBeans
The basics of MBeans and where they fit into the JMX
architecture is beyond the scope of this article. We will simply
create, implement, expose, and secure an MBean for our application.
We are interested in exposing two pieces of data corresponding to
the following two methods. Here is the our simple MBean
interface:
public interface LoginStatsMBean {
public int getFailedLogins();
public int getSuccessLogins();
}
Quite simply, the two methods return the number of failed and
successful logins. The LoginStatsMBean implementation,
LoginStats, provides a concrete implementation for
both methods. Let's have a look at the
getFailedLogins() implementation:
public int getFailedLogins() {
ServletContext context =
Config.getServletContext();
Integer val = (Integer)
context.getAttribute(
Constants.FAILED_LOGINS_KEY);
return (val == null) ? 0 : val.intValue();
}
The method returns a value stored in the
ServletContext. The getSuccessLogins()
method is implemented in a similar manner.
Creating and Securing a JMX Agent
The JMXAgent class that manages the JMX-related
aspects of the application has a few responsibilities:
Create an MBeanServer.
Register LoginStatsMBean with the
MBeanServer.
Create a JMXConnector, allowing remote clients
to connect.
Involves use of JNDI.
Must also have an RMI registry running.
Securing the JMXConnector using a username and
password.
Starting and stopping the JMXConnector on
application start and stop, respectively.
The class outline for JMXAgent is:
public class JMXAgent {
public JMXAgent() {
// Initialize JMX server
}
public void start() {
// Start JMX server
}
// called at application end
public void stop() {
// Stop JMX server
}
}
Let's understand the code in the constructor that will enable
clients to remotely monitor the application.
Creating a MBeanServer with MBeans
We first create a MBeanServer object, which is the
core component of the JMX infrastructure. It allows us to expose
our MBeans as manageable objects. The
MBeanServerFactory.createMBeanServer(String) method
makes this an easy task. The parameter supplied is the domain of
the server. Think of this as the unique name for this
MBeanServer. Next, we register the
LoginStatsMBean with the MBeanServer. The
MBeanServer.registerMBean(Object, ObjectName) method
takes in as a parameter an instance of the MBean implementation and
an object of type ObjectName that uniquely identifies
the MBean; in this case, DOMAIN + ":name=LoginStats"
suffices.
MBeanServer server =
MBeanServerFactory.createMBeanServer(DOMAIN);
server.registerMBean(
new LoginStats(),
new ObjectName(DOMAIN + ":name=LoginStats"));
Creating the JMXServiceURL
At this point, we have created an MBeanServer and
registered LoginStatsMBean with it. The next step is
to make the server available to clients. To do this, we must create
a JMXServiceURL, which represents the URL that clients
will use to access the JMX service:
Let's look closely at the above line of code. The
JMXServiceURL constructor takes four arguments:
The protocol to be used when connecting (rmi,
jmxmp, iiop, etc.).
The host machine of the JMX service. Supplying localhost as
argument would also suffice however, supplying null
forces the JMXServiceURL to find the best possible
name for the host. For example, in this case, it would translate
null to zarar, which is the name of my
computer.
The port used by the JMX service.
Finally, we must supply the URL path that indicates how to
find the JMX service. In this case, it would be
/jndi/rmi://localhost:1099/jmxapp.
The URL path warrants more explanation:
/jndi/rmi://localhost:1099/jmxapp
The /jndi part is saying that the client must do a
JNDI lookup for the JMX service. The
rmi://localhost:1099 indicates that there is an RMI
registry running on localhost at port 1099 (more on the RMI
registry later). The jmxapp is the unique identifier
of this JMX service in the RMI registry. A toString()
on the JMXServiceURL object yields the following:
The above is the URL clients will eventually use to connect to
the JMX service. The J2SE 5.0 documentation has more on the
structure of this URL.
Securing the Service
J2SE 5.0 provides a mechanism for JMX to authenticate users in
an easy manner. I have created a simple text file that stores
username and password information. The contents of the file
are:
zarar siddiqi
fyodor dostoevsky
The users zarar and fyodor are
authenticated by the passwords siddiqi and
dostoevsky, respectively. The next step is to create
and secure a JMXConnectorServer that exposes the
MBeanServer. The path of the username/password file is
stored in a Map under the key,
jmx.remote.x.password.file. This Map is
later used when creating the JMXConnectorServer.
ServletContext context = Config.getServletContext();
// Get file which stores jmx user information
String userFile = context.getRealPath("/") +
"/WEB-INF/classes/" +
Constants.JMX_USERS_FILE;
// Create authenticator and initialize RMI server
Map<string> env = new HashMap<string>();
env.put("jmx.remote.x.password.file", userFile);
Now let's create the JMXConnectorServer. The
following line of code does the trick.
The
JMXConnectorServerFactory.newJMXConnectorServer(JMXServiceURL,
Map, MBeanServer) method takes in as arguments three objects
we have just created: the JMXServiceURL, the
Map that stores authentication information, and the
MBeanServer. The connectorServer instance
variable allows us to start() and stop()
the JMXConnectorServer on application start and stop,
respectively.
Although the J2SE 5.0 implementation of JSR 160 is quite
powerful, other implementations, such as MX4J, provide classes that offer
convenient features such as obfuscating of passwords, namely
the
PasswordAuthenticatorclass.