Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to profile jetty server on linux system, for it I've started jetty using next command line JAVA_OPTIONS='-Xrunjprofiler' sh jetty.sh start and received error Could not find agent library on the library path or in the local directory: jprofiler, How can I added library path on linux? Thanks.

share|improve this question
1  
If you simply use the wizard, it will tell you exactly what you need to do. – Gábor Lipták Jan 3 '11 at 21:09

1 Answer

up vote 1 down vote accepted

try adding the Jprofiler to the PATH. I hope it works.

share|improve this answer
I have executed next command export PATH=$PATH:/usr/local/jprofiler6, result the same ... :( – jitm Dec 27 '10 at 21:35
add this to the environment variables LD_LIBRARY_PATH. Refer to the right library, it matters whether you are using a 64 bit or 32 bit library. – Vanchinathan Chandrasekaran Dec 27 '10 at 21:49
I am using 64 bit linux. – jitm Dec 27 '10 at 22:18
So I think you should point LD_LIBRARY_PATH to 64 bit library of Jprofiler. coderanch.com/t/416403/Performance/java/… – Vanchinathan Chandrasekaran Dec 27 '10 at 22:31
Yes, I have found it, all works, Thanks for your advice... – jitm Dec 27 '10 at 22:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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