I would like to use JConsole to monitor my Websphere application, but I am not sure how to enable JMX.
|
Following information is for Websphere 6.1 on Windows. First of all, the magic URL to connect to the MBean server is:
If you have a default Websphere installation, the JNDI port number will likely be 2809, 2810, ... depending on how many servers there are installed on one system and the specific one you want to connect to. To be sure, when starting Websphere, check the logs, as it will dump a line like
If you don't get this line, open the Websphere admin console and go to
to see if you need to add or change the config. Second important bit of information is that the following JAR is always needed when doing JMX with the server:
You can find this JAR in the the For the remainder of this answer, assume that Websphere is installed in D:\prog\was61. To run JConsole, type in the following:
Then go to the "Advanced" tab and type in the magic JMX URL. Press connect and you should see the MBeans appear. Using a Sun JDK is an entirely different matter. You need one extra JAR that is in the lib of the IBM JDK but not Sun's (ibmorb.jar), and maybe the following command may work for you:
I say maybe, because it didn't work for me. I got a nice jndiUnavailCommErr error message, since it expected something on port 2809 while my Websphere installation is listening on 2810, although I correctly specified port 2810 in the JMX URL. But, if you adapt the paths to point to your Sun JDK, it might work for you. It's the closest I ever got to connecting to Websphere using Sun's JDK. Final note: I tried a solution based on RMI, there is also a SOAP connector available but haven't tried it. As always with J2EE, Websphere and stuff: good luck, you'll need it. |
||||
|
|
I couldn't get this to work. All I got was
I did however get it working by doing the following:
com.sun.management.jmxremote.port=9999 com.sun.management.jmxremote.authenticate=false com.sun.management.jmxremote.ssl=false But none of the usefull mbeans show up..? |
|||
|
|
|
Maybe it's a little offtopic, but I have found a way to connect to WAS 7.0 JMX server from JConsole. No server setup is required, no AppClient, only some JARs and a little client setup. Use the following script
If the target server has administrative security disabled, comment out CLIENTSAS and PROVIDER lines. If the security is enabled, you will also need sas.client.props file to be put in THIS_DIR directory. The template file can be found under WAS_profile\properties directory. You will have to do a little setup. Here is an excerpt from my sas.client.props
OK :) After connecting, the login popup will appear. Type your admin user and password (user & pw are not required on the connection dialog in JConsole) You may run the JConsole from IBM JDK, or Sun JDK. For IBM, no other setup is required. However, for Sun you may need to put orb.properties file in your home directory. The file can be found in com.ibm.ws.ejb.thinclient_7.0.0.jar. |
||||
|
|
|
It is simple. Just start Websphere with the following JMX parameters:
Then start JConsole or VisualVM and connect to localhost:1099 Since i am not allowed to post a proof screenshot i post the information from the visualvm "overview tab". PID: 12568 Host: localhost Main class: <unknown> Arguments: <none> JVM: IBM J9 VM (2.3, J2RE 1.5.0 IBM J9 2.3 Windows XP x86-32 j9vmwi3223-20100808 (JIT enabled) J9VM - 20100629_60535_lHdSMr JIT - 20100623_16197_r8 GC - 20100211_AA) Java: version 1.5.0, vendor IBM Corporation Java Home: C:\Program Files\IBM\SDP\runtimes\base_v61\java\jre JVM Flags: <none> Heap dump on OOME: disabled |
|||||||
|
|
I found that in order to connect to WAS 6.1 using the Sun JDK JConsole, in addition to the
These can be found in the java\jre\lib directory of websphere. For example on windows, if you copy all the four JARs listed above to a directory of your choice (i've copied them to C:\packages\was61-jmx in the example below), you can use a batch file like the following to start JConsole:-
This worked for me for jdk 1.5 and 1.6 versions of the Sun Jconsole. |
|||
|
|
|
I also struggled for a few hours to get this to work and I found the solution. The key issue is here is SSL - the client has to use the proper keys to establish a SSL connection to the server. This involves pointing to the correct trust store location and trust store password as described here. The best way to set up the environment is to call the setupCmdLine.sh (on Windoze it is setupCmdLine.bat) for the relevant server, and then invoke jconsole like this:
|
|||
|
|
|
Look at the following simple method to connect jconsole to Websphere 6.1 It does works for me (Solaris, Was 6.1, Sun JVM), it also works with Visual VM Enjoy ! |
|||||||
|
|
You can find the correct port to connect to on the WebSphere Application Server under Communications -> Ports. The port associated with BOOTSTRAP_ADDRESS allows you to connect. |
|||
|
|
|
You cannot set the required system properties through the WAS console, because it does not allow you specify empty values. Instead, you have to insert the following at the bottom of 'server.xml':
|
|||
|
|
|
you can try the following, it uses the SOAP protocol adapter. I think it's as lean a configuration possible.
Credits to my colleague Jeroen for the initial version of the script using IIOP (I'm trying SOAP in the hope that it will work with Hyperic) |
|||
|
|
|
Ok. There are two ways to do this: one using SOAP connector one using RMi/IIOP connector. For SOAP you need to do WAS setup to add a new PORT and other JVM args described above. But all you get once JConsole connects to the server are basic JVM metrics. With RMI you get everything that WebSphere exposes. All the MBeans! The only caveat is: if your WAS JVM is behind a firewall - you'd need to open a port to get to it from your desktop. But you can run this via X11 right off the app server host! I used JDK7 on my Windows XP desktop to connect to WAS 7.0 with global security enabled. I took a script from Answer #4 above and used it as a starting point. Here's my version of it:
The WAS_HOME is just a directory where i have those IBM JARs that i downloaded from my WebSphere binaries (off Solaris). I also created two subdirs under there: properties and keystore. In the properties subdir i put my sas.client.props and ssl.client.props, also downloaded from a working WAS7 cell (i took it off of a DM). In the keystore subdir i put the key.p12 and trust.p12 files, also downloaded from a WAS7 cell. Make sure they have the right certs! If the ones from WAS/etc don't work - try the ones from ${CONFIG_ROOT}/cells/. Modify ssl.client.props to make sure the path to the p12 files is correct! Now, in order for this to work you also have to download the following from your WAS binaries:
Put this whole directory under your SUN JDK's jre/lib directory. This takes care of the IBM JSSE2 Provider errors and such. Also, get the following three files from WAS_BIN_HOME/java/jre/lib/security:
I just overwrote the ones that came with SUN's JDK with the ones i took from IBM's. Also, in sas.client.props be sure to enter user ID and password, similar to how you do it in soap.client.props. You can encode the password the same way. This is needed to get past Global Security's BasicAuth. I think that's it. P.S. I'm not a Windows pro, so if there's a cleaner way to do this - please share it. |
||||
|
|