vote up 3 vote down star

Hi

I'm currently writing an app to monitor another Java process and take specific actions when certain targets are hit. For example, if a thread deadlocks for a certain time, kill the thread, if the memory usage goes over a specific amount, send email alerts and kill the process, etc.

My app will run as a stand-alone app, monitoring specific other apps (locally, though from what I can see remote or local makes no difference here).

I'm monitoring the external JVMs via MXBeans, but cannot see a clean way to kill the external process short of a system call like 'kill -9 ' (I'm working in UNIX by the way).

Is there any way to kill a JVM through the MXBean interfaces?

Graham

flag

67% accept rate
I'm not aware of an out-of-the-box way of doing this, but I tend to implement an "emergency shut-down" MBean that simply calls System.exit when called (I also allow you to pass in the exit return code). – Adamski Oct 28 at 10:48

2 Answers

vote up 2 vote down check

Sure. Implement an MBean on the target server that calls System.exit(), and invoke that as a JMX operation from the client.

link|flag
vote up 2 vote down

If you're using Spring, you can simply annotate your bean to have one of its operations being exposed as an MBean operation. So it would be something like this:

@MBeanOperation(description="Kill the service")
public void die() {
  System.exit();
}

... or perhaps stop the application context yourself.

link|flag
you mean @ManagedOperation – skaffman Oct 28 at 12:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.