Hi, On Windows, the DLLs have to be somewhere in the PATH, not LD_LIBRARY_PATH which is a *nix thing. Moving them to Windows\System32 works as that's part of the standard PATH, but you can also do it just starting Resin with a .bat file with something like... *** set PATH=C:\Wherever\Your\DLLs\are;%PATH% set JAVA_TOOL_OPTIONS=your-profiler-extra-options %JAVA_TOOL_OPTIONS% httpd.exe ***
I use something like that successfully with YourKit Java Profiler and Resin 3.1.X, 3.2.X (in this latter case it is resin.exe instead of httpd.exe) and I didn't have to move any DLLs around, which really helps when you have to upgrade your profiler. I hope it helps, D. PS: I have not used the -Xdebug, so I'm not sure if that affects or not. S'està citant Jan Simacek <[email protected]>: > > On Windows (tested on vista but should work elsewhere) for me worked copying > all the dlls from jprofiler6\bin\windows to Windows\System32 cause that's > one of the default locations where windows look for dll's > > Andrew Fritz-2 wrote: >> >> >> >> >> >> >> >> Hmm... Ok, I think you may have it. I copied the jprofiler tree instead >> of installing it. I bet it adds itself to my LD_LIBRARY_PATH. >> >> I tried removing the debug options already with no luck. >> >> In any case, I'll try looking for a .so file tomorrow and if that >> doesn't fix it, I'll try the verbose option. >> >> Thanks! >> Andrew >> >> Knut Forkalsrud wrote: >> >> >> Andrew Fritz wrote: >> >> >> Regardless, I still get a "Could not find agent library on the library >> path or in the local directory: jprofilerti". >> >> >> The profiler likely comes with a binary, a file whose name end in .so, >> at least for Linux. For jprofilerti the file name would be >> libjprofilerti.so I think. Make sure that file is available to the >> dynamic loader by for example setting the environment variable >> LD_LIBRARY_PATH (Linux) or DYLD_LIBRARY_PATH (Mac if I remember >> correctly) or just copy it to ${resin.home}/libexec/ if you have such a >> directory. >> >> -Knut >> >> PS: I still think removing -Xdebug is worth an attempt. I had very >> similar symptoms and that change did the trick. >> >> >> >> _______________________________________________ >> resin-interest mailing list >> [email protected] >> http://maillist.caucho.com/mailman/listinfo/resin-interest >> >> >> >> >> >> >> >> >> _______________________________________________ >> resin-interest mailing list >> [email protected] >> http://maillist.caucho.com/mailman/listinfo/resin-interest >> >> > > -- > View this message in context: > http://www.nabble.com/Profiling...-tp16572976p22164339.html > Sent from the Resin mailing list archive at Nabble.com. > > > > _______________________________________________ > resin-interest mailing list > [email protected] > http://maillist.caucho.com/mailman/listinfo/resin-interest > ---------------------------------------------------------------- _______________________________________________ resin-interest mailing list [email protected] http://maillist.caucho.com/mailman/listinfo/resin-interest
