I've started jprofiler on my production server and after some profiling I've killed it (kill -9 ).

Now I'm trying to start it again and receive only "No unprofiled JVMs found." message, but jps command says that my application is running (and I can see that it works by myself actually).

Probably jprofiler stores info about which jvms it profiles at the moment in some file and kill command prevented it from updating this file. So how can I clean it manually?

p.s. I've tried to delete and then unpack jprofile again, still not working.

link|improve this question

kill -9 doesn't give the target process a chance to clean up (like, you know, properly unregister from the target JVM for instance). Only use it when a plain kill hasn't worked. – Mat Feb 6 at 12:54
yes, now I know it ( – tsds Feb 6 at 13:03
feedback

1 Answer

up vote 1 down vote accepted

JProfiler finds JVMs via the "Attach API" that is part of the JDK. Have a look at the $TMP/hsperfdata_$USER directory, which is created by the hot spot JVM. It should contain PID files for all running JVMs. If not, delete the directory and restart all JVMs.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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