Ever wondered how to configure JProfiler 6 for Oracle WebLogic 11g application server? Here are the steps:
1. Download and install JProfiler 6. If you don't have the license, you can install the 10-day trial version. Follow the installation notes and start JProfiler. Assume the JProfiler installation path is <jprofiler-dir>, start the JProfiler by:
# <jprofiler-dir>/bin/jprofiler
2. Use the Integration Wizard to create a start script for WebLogic. Select Session -> Integration Wizard -> New Server Integration from the menu.
JPROFILER_OPTIONS="-agentpath:/opt/jprofiler6/bin/solaris-sparcv9 \ /libjprofilerti.so=port=8849,nowait,id=115,config=/root/.jpr ofiler6/config.xml
\ $JPROFILER_OPTIONS" export JPROFILER_OPTIONS
Use this new start script to start your WebLogic server. You will see JProfiler prompts both on the commond line and in server startup log.
4. Go to JProfiler, select 'Session' -> 'New Session' from the menu, input a session name, select 'Remote' for Session Type, which is used to profile your Java EE applications. Local session type is used for standalone applications. You can just use the default values for 'Remote Settings'. Customize the Filter, Profiling and Trigger Settings as you wish. Click ok, wait for a little while and you will see all the objects displayed! The default view is memory profiling, you can select heap walker, CPU view, thread view etc. Now you are done with JProfiler configuration and ready for profiling your application on WebLogic.
Close JProfiler window and the WebLogic server will be still running but the profiling stops.
Running JProfiler during a run can slow down the server as it is very resource consuming. So it is not recommended to run JProfiler in production environments. You should run JProfiler only when it is necessary, e.g., when you suspect there are memory leaks or thread conflicts, or at the point you want to see what's happening.
转自这里