Listing of running Java applications on linux
Do you guys have some script or GUI tool that would give you nice and transparent listing of running java applications ? I'm using $ps ouput that I grep through for "java" keyword, but usually I'm running eclipse, tomcat, nexus, database IDE and a few others, all of them with many parameters and I'm spending too much time searching through that $ps output. I'm tired of it. Appre开发者_如何学Gociate any suggestions.
How about jps
- it comes with recent jdks.
I think jvisualvm or jconsole are doing what you expect. These are GUI based and come with recent JVM's as well.
精彩评论