|
From: vijay s. <vj....@gm...> - 2013-01-20 08:05:00
|
---------- Forwarded message ---------- From: vijay singh <vj....@gm...> Date: Sun, Jan 20, 2013 at 1:01 AM Subject: Running valgrind on WebSphere Server process To: val...@li... Hi, I have a suspected native memory leak in a Java Web Application deployed on WebSphere App Server. We are trying to use valgrind to debug the same. Can anyone help me with the commands to be used to start the server process under valgrind. |
|
From: vijay s. <vj....@gm...> - 2013-01-20 08:07:40
|
Hi, I have a suspected native memory leak in a Java Web Application deployed on WebSphere App Server. We are trying to use valgrind to debug the same. Can anyone help me with the commands to be used to start the server process under valgrind. |
|
From: Philippe W. <phi...@sk...> - 2013-01-20 12:49:42
|
On Sun, 2013-01-20 at 01:07 -0700, vijay singh wrote: > > I have a suspected native memory leak in a Java Web Application > deployed on WebSphere App Server. We are trying to use valgrind to > debug the same. > > > Can anyone help me with the commands to be used to start the server > process under valgrind. What have you tried ? What problems have you encountered ? You must very probably activate the option related to self modifying code. Philippe |
|
From: vijay s. <vj....@gm...> - 2013-01-20 19:40:25
|
I tried adding the below command to startServer.sh script: valgrind --trace-children=yes --leak-check=full --log-file=/tmp/valgrind_logfile.out java -Djava.compiler=NONE I am getting some valgrind output too, when I run the startServer script. But my question is how to make sure that valgrind is running for every request coming on to the JVM for this specifc application. On Sun, Jan 20, 2013 at 5:50 AM, Philippe Waroquiers < phi...@sk...> wrote: > On Sun, 2013-01-20 at 01:07 -0700, vijay singh wrote: > > > > > I have a suspected native memory leak in a Java Web Application > > deployed on WebSphere App Server. We are trying to use valgrind to > > debug the same. > > > > > > Can anyone help me with the commands to be used to start the server > > process under valgrind. > What have you tried ? What problems have you encountered ? > > You must very probably activate the option related to > self modifying code. > > Philippe > > > > |