I have a java process that cannot be killed. I have tried every method I know, or that I have found on the internet to no avail. I have tried:
killall java
kill -9 <pid>
kill -11 <pid>
kill -6 <pid>
No matter what I try, I cannot kill the program. If this helps, it has a dynamic PID, and this has happened before and I somehow killed it last time.

kill -9a process. Sending aSIGTERM, thenSIGQUITorSIGINTshould make the program quit. If it doesn't it's buggy. – Marco Jan 14 at 21:19