You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Shanti Suresh <sh...@umich.edu> on 2013/03/12 19:18:58 UTC

Re: tomcat 6.0.35 in production maintaince

On Tue, Mar 12, 2013 at 1:48 PM, Caldarale, Charles R <
Chuck.Caldarale@unisys.com> wrote:

>
> > is there any maintenance necessary for production servers if so what
> > are those ?
>
> Health monitoring is always useful.
>
> http://wiki.apache.org/tomcat/FAQ/Monitoring
> http://wiki.apache.org/tomcat/FAQ/Performance_and_Monitoring
>
>  - Chuck
>

As Chuck pointed out, find out what's causing the leak.

Some commands that might help include:

This command will print the PermGen memory usage in MB:
${JRE_HOME}//bin/jstat -gcold ${TOMCAT_PID} | /usr/bin/tail -1 | awk -F' '
'{print $2/1024}'

This command will give you a helpful snapshot of what's occupying PermGen:
${JRE_HOME}/bin/jmap -permstat ${TOMCAT_PID}

Thanks,
                  -Shanti