RE: Limit catalina.out size

2005-03-29 Thread Michael Cornell
PROTECTED] Sent: 29 March 2005 16:11 To: Tomcat Users List Subject: Re: Limit catalina.out size There shouldn't be anything going to standard output (Unless your code is writing to System.out) An overly simple way to rotate logs in unix ... cd $tomcat_log_dir cp -f catalina.out catalina.out.

Re: Limit catalina.out size

2005-03-29 Thread Filip Hanik - Dev Lists
or like we do, we pipe the output through cronolog Filip Tim Funk wrote: There shouldn't be anything going to standard output (Unless your code is writing to System.out) An overly simple way to rotate logs in unix ... cd $tomcat_log_dir cp -f catalina.out catalina.out.`date "+%Y.%m.%d"` cat /dev/

Re: Limit catalina.out size

2005-03-29 Thread Tim Funk
There shouldn't be anything going to standard output (Unless your code is writing to System.out) An overly simple way to rotate logs in unix ... cd $tomcat_log_dir cp -f catalina.out catalina.out.`date "+%Y.%m.%d"` cat /dev/null > catalina.out -Tim Jimmy Ray wrote: Running on HPUX...SDK 1.4.2...t

Re: Limit catalina.out size

2005-03-29 Thread Jimmy Ray
Sorry...Tomcat 5.0.28 --- Jimmy Ray <[EMAIL PROTECTED]> wrote: > Running on HPUX...SDK 1.4.2...the standard output is > going to catlaina.out. Is it possible to change the > logger settings reduce the size of the catalina.out > file and perform circular logging? If so where are > these settings?