Reputation: 12236
I am working on a Java project in Eclipse in Unix, and ran the project from the IDE. The process seems to run forever and doesn't respond to my clicks on the red "stop" button. I really want to avoid restarting my IDE. Can anyone advise how to kill the embedded process?
Upvotes: 2
Views: 2336
Reputation: 745
Just run in terminal
jps -l
It will show you all running java processes.
Quick example. I run simple JFrame window.
As you can see there is clear process number for my JFrame. Just kill it and work with your Eclipse without restart.
Upvotes: 5