Are there any libraries that would allow me to call a JMX MBean method from a shell script. We expose some operations/admin commands through JMX, and we could have our admins use JConsole, or VisualVM, but some tasks are better left to automation. In that automation we'd like to be able to call a JMX MBean method on our running server, preferably from a shell script.
|
The following command line JMX utilities are available:
Groovy JMX Example:
cmdline-jmxclient example: If you have an
With an Operation called:
Then you can write a simple bash script (assuming you download cmdline-jmxclient-0.10.3.jar and put in the same directory as your script):
|
|||||||||||
|
|
The Syabru Nagios JMX plugin is meant to be used from Nagios, but doesn't require Nagios and is very convenient for command-line use:
|
|||
|
|
|
Take a look at JManage. It's able to execute MBean methods and get / set attributes from command line. |
|||
|
|
You might want also to have a look at jmx4perl. It provides java-less access to a remote JEE Server's MBeans. However, a small agent servlet needs to be installed on the target platform, which provides a restful JMX Access via HTTP with a JSON payload. (Version 0.50 will add an agentless mode by implementing a JSR-160 proxy). Advantages are quick startup times compared to launching a local java JVM and ease of use. jmx4perl comes with a full set of Perl modules which can be easily used in your own scripts:
You can also use alias for common MBean/Attribute/Operation combos (e.g. for most MXBeans). For additional features (Nagios-Plugin, XPath-like access to complex attribute types, ...), please refer to the documentation of jmx4perl. |
|||
|
|
|
I've developed jmxfuse which exposes JMX Mbeans as a Linux FUSE filesystem with similar functionality as the /proc fs. Attributes and operations are exposed for reading and writing. http://code.google.com/p/jmxfuse/ For example, to read an attribute:
to write an attribute:
to invoke an operation:
|
||||
|
|
|
A little risky, but you could run a curl POST command with the values from the form from the JMX console, its URL and http authentication (if required):
Beware: the method index may change with changes to the software. And the implementation of the web form could change. The above is based on source of the JMX service page for the operation you want to perform:
Source of the form:
|
||||
|
|
|
I'm not sure about bash-like environment. You might try some simple wrapper programs in Java (with program arguments) that invoke your MBeans on the remote server. You can then call these wrappers from the shell script If you can use something like Python or Perl, you might be interested in JSR-262 which allows you to expose JMX operations over web services. This is scheduled to be included in Java 7 but you might be able to use a release candidate of the reference implementation |
||||
|
|