vote up 4 vote down star
2

When a java based application starts to misbehave on a windows machine, you want to be able to kill the process in the task manager if you can't quit the application normally. Most of the time, there's more than one java based application running on my machine. Is there a better way than just randomly killing java.exe processes in hope that you'll hit the correct application eventually?

EDIT: Thank you to all the people who pointed me to Sysinternal's Process Explorer - Exactly what I'm looking for!

flag

75% accept rate

12 Answers

vote up 5 vote down check

Download Sysinternal's Process Explorer. It's a task manager much more powerfull than Windows's own manager.

One of it's features is that you can see all the resources that each process is using (like registry keys, hard disk directories, named pipes, etc). So, browsing the resources that each java.exe process holds might help you determine wich one you want to kill. I usually find out by looking for the one that's using a certain log file directory.

link|flag
Process Explorer can also show you the command that started the java.exe process. That will generally contain the name of the jar file or the name of the class. – Jay R. Sep 16 '08 at 22:41
vote up 0 vote down

On my workstation I can see a java process using Task Manager, and can see its PID. However, that PID does not appear in Process Explorer, so I'm struggling to use that technique. Is there any reason why Process Explorer may not be seeing this process?

link|flag
vote up 0 vote down

If you're using Java 6, try jvisualvm from the JDK bin directory.

link|flag
vote up 1 vote down

Run

jps -lv

which shows PIDs and command lines of all running Java processes. Determine PID of the task you want to kill. Then use command:

taskkill /PID <pid>

to kill the misbehaving process.

link|flag
vote up 0 vote down

Rather than using a third party tool, you can also make a pretty good guess by looking at all the columns in task manager if you know roughly what the various java processes on your system are. From the Processes tab, use View-> Select Columns and add PID, CPU Time, VM Size, and Thread count. Knowing roughly what the process is doing should help narrow it down.

For example, in a client-server app, the server will likely use more memory, have more threads, and have used more CPU time because it has been running longer. If you're killing a process because it's stuck, it might simply be using more CPU right now.

MAX java heap memory is usually directly reflected in VM Size. So if you're using -Xmx flags, the process with the larger setting will have a larger VM Size.

link|flag
vote up 3 vote down

Using jps in the JDK will give you more information. More information is display with the -m, -l and -v options.

link|flag
jps is great. This solution will allow you to kill relevant Java processes in a script which Process Explorer won't. – Dave Webb Jun 12 at 14:19
vote up 0 vote down

In case you're developing software: use a java-launcher. I used for a few of my application [Exe4j][http://www.ej-technologies.com/products/exe4j/overview.html] and it worked very well. When the application is started, it's listed as for example "myserverapp.exe" or "myapp" in the windows tasks manager. There are other lauchers too (don't known them by heart), few of them might be for free too.

link|flag
vote up 0 vote down

If the application is not responding at all, then Process Explorer is a good option.

If it's sort of responding, but not dying, sometimes bringing up task manager, and then moving another dialog over the java process will give you a clue. The java process that's taking up cpu cycles to redraw is the one you're looking for.

link|flag
vote up 2 vote down

You could try opening Windows Task Manager, going to the Applications tab, right clicking the application and then selecting "Go To Process". This will automatically highlight the appropriate process in the Processes tab.

link|flag
vote up 0 vote down

Using ProcessExplorer and hovering over the Java process will show the command line.

link|flag
vote up 0 vote down

I'd suggest downloading Process Explorer from Sysinternals and looking at the different java.exe processes more closesly, that way you can get a better idea of which one to kill.

http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx

It's very intuitive and you can find the java.exe processes and right click and goto their properties, from there you can see their command line, time of creation, etc which can help you find the process you want to kill.

Hope it helps.

link|flag
vote up 5 vote down

Have you tried using Process Explorer from SysInternals? It gives a much better idea of what is running within the process. Available free online here: http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx

link|flag

Your Answer

Get an OpenID
or

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