Catalina.out Message

2005-10-03 Thread Partheeban Boopathy
Hi I have two tomcat5.0.27 instance running in different machine(unix box). After i started my server i opened my catalina.out and i can see the difference in catalina.out file. I am not able to see the timestamp and class name(Bold messages) in one of the machine. I am not sure why its

Re: No Timestamp in catalina.out

2005-09-23 Thread Leon Rosenberg
catalina.out contents are actually system.out-s so you shouldn't expect any timestamps there, unless you have a logkit like log4j and configured your logger to go for standard out (which is bad :-)) However, we had same problem and have a workaround for this: We are starting a Thread i

No Timestamp in catalina.out

2005-09-23 Thread Partheeban Boopathy
Common guys i need help on this ,since its effecting our support to production. I dont have any clue what to do on this I am using Tomcat5.0.27 The Logging Pattern in Catalina.out is missing with Timestamp . I am getting blank instead of TimeStamp. I was using same Tomcat version in my local

Re: Plain text passwords printed to catalina.out

2005-08-31 Thread Chandan Gupta
take care of that issue. > -Sudhir. > > -Original Message- > From: Evan Dillon [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 31, 2005 1:27 PM > To: tomcat-user@jakarta.apache.org > Subject: Plain text passwords printed to catalina.out > > Passwords submitted via pass

RE: Plain text passwords printed to catalina.out

2005-08-31 Thread Movva, Sudhir
printed to catalina.out Passwords submitted via password form fields over SSL are showing up in plain text in my catalina.out. Is this something I should be concerned about and, more importantly, something I can turn off? When any POST form is submitted (port 80 or 443,) The plain-text form data

Plain text passwords printed to catalina.out

2005-08-31 Thread Evan Dillon
Passwords submitted via password form fields over SSL are showing up in plain text in my catalina.out. Is this something I should be concerned about and, more importantly, something I can turn off? When any POST form is submitted (port 80 or 443,) The plain-text form data is in my catalina.out

Re: Change log level for catalina.out

2005-06-30 Thread Anoop kumar V
Yes - check out server.xml under the TOMCAT_HOME/conf folder. search for debug - if it is 0 I think increasing it to 1 will give u some detailed level logging - u can go on upto 9. ( I have not tried this - purely from documentation) ATB, Anoop On 6/30/05, BATCHELOR, SCOTT (CONTRACTOR) <[EMAIL P

Change log level for catalina.out

2005-06-30 Thread BATCHELOR, SCOTT \(CONTRACTOR\)
Can I change the log level for this? -SB - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Catalina.out eats my harddisk space

2005-04-29 Thread Will Hartung
> From: "David Smith" <[EMAIL PROTECTED]> > Sent: Friday, April 29, 2005 4:36 AM > Question to the OT: how are you deleting catalina.out? If you aren't > shutting down tomcat first, you need to do that. Otherwise some OS's > recreate the file to it'

Re: Catalina.out eats my harddisk space

2005-04-29 Thread David Smith
Question to the OT: how are you deleting catalina.out? If you aren't shutting down tomcat first, you need to do that. Otherwise some OS's recreate the file to it's former size with empty space where log info used to be. Beyond that the other poster's ideas should also

Re: Catalina.out eats my harddisk space

2005-04-29 Thread Tim Funk
catalina.out is never written to by tomcat itself. (except if no loggers for commons-logging are configured) So .. 1) Do not use System.out 2) Do not use Throwable.printStackTrace() 3) Configure you logging (add log4j, or add a commons-logging configuration) -Tim Rajasekar wrote: Hi, I am

Re: Catalina.out eats my harddisk space

2005-04-29 Thread Anto Paul
On 4/29/05, Rajasekar <[EMAIL PROTECTED]> wrote: > Hi, > > I am facing a *catalina.out log* file problem in tomcat5. It eats my > harddisk space like anythink. My harddisk size is 80GB hard disk. Everyday i > have to remove the catalina.out file. the nextday it fills the har

RE: Catalina.out eats my harddisk space

2005-04-29 Thread Dale, Matt
Under normal use very little appears in catalina.out. What exactly is filling up the file? I would suggest that it is application output or errors and that you need to sort that out. I would also suggest that you use a proper logging package like log4j which will allow you to have rotatable

Catalina.out eats my harddisk space

2005-04-29 Thread Rajasekar
Hi, I am facing a *catalina.out log* file problem in tomcat5. It eats my harddisk space like anythink. My harddisk size is 80GB hard disk. Everyday i have to remove the catalina.out file. the nextday it fills the harddisk. and i cann't run tomcat. What could be the problem. Please help

Re: Logs : catalina.out

2005-04-05 Thread Cédric Buschini
chini <[EMAIL PROTECTED]> wrote: Hi, I m running a Tomcat 5 server. It creates log files "catalina.out" stored in "../jakarta/logs" My question is simple : here can I change that path. Thk Cedric -

Re: Logs : catalina.out

2005-04-05 Thread David Tonhofer, m-plify S.A.
Yes. This is Tomcat's stdout/stderr. You can edit /bin/catalina.sh to set a new path and/or filename. -- David --On Tuesday, April 05, 2005 10:36 AM +0100 Cédric Buschini <[EMAIL PROTECTED]> wrote: Hi, I m running a Tomcat 5 server. It creates log files "catalina.out" store

Logs : catalina.out

2005-04-05 Thread Cédric Buschini
Hi, I m running a Tomcat 5 server. It creates log files "catalina.out" stored in "../jakarta/logs" My question is simple : here can I change that path. Thk Cedric - To unsubscribe, e-mail: [EMAIL PROTE

RE: Limit catalina.out size

2005-03-29 Thread Michael Cornell
I would imagine that tomcat is logging using commons-logging, and that by default it is outputting to Catalina.out A suggested solution would be to include for example log4j.jar with a log4j.properties in the classpath which should control how this log is produced (consoleAppender output seems to

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&

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 o

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 ar

Limit catalina.out size

2005-03-29 Thread Jimmy Ray
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? Regards, Jimmy Ray

RE: Query on changing the path for catalina.out

2005-03-09 Thread mandar.mohan
PM To: Tomcat Users List Subject: RE: Query on changing the path for catalina.out The location of the catalina.out log file is not controlled from server.xml. This is other log files. Look in catalina.sh for ">> "$CATALINA_BASE"/logs/catalina.out 2>&1 &" and c

RE: Query on changing the path for catalina.out

2005-03-09 Thread Dale, Matt
The location of the catalina.out log file is not controlled from server.xml. This is other log files. Look in catalina.sh for ">> "$CATALINA_BASE"/logs/catalina.out 2>&1 &" and change that, to change the location of catalina.out. Ta Matt -Origina

Query on changing the path for catalina.out

2005-03-09 Thread mandar.mohan
Hi, I need to change the default location of Catalina.out log file. So I modified the server.xml file in the conf dir in the following way: But inspite of doing this my catalina.out is gets logged in CATALINA_BASE/logs/ directory. There are two scripts in tomcat/bin

Re: Split catalina.out to separate stdout and stderr?

2005-03-03 Thread John Smith
Or just read and undrestand the startup parameters and go catalina run > out.txt - Original Message - From: "Tim Funk" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Thursday, February 17, 2005 11:43 AM Subject: Re: Split catalina.out to separate stdo

RE: how to print to web page instead of catalina.out

2005-02-23 Thread Jin Wu
ruary 23, 2005 10:39 AM To: Tomcat Users List; Antony Paul Subject: Re: how to print to web page instead of catalina.out I tried out.print(). The complation failed. The error is: cannot resolve symbol symbol : variable out Thanks Jin Antony Paul wrote: Why not use out.print() or you are trying to

RE: how to print to web page instead of catalina.out

2005-02-23 Thread Daxin Zuo
web page instead of catalina.out I tried out.print(). The complation failed. The error is: cannot resolve symbol symbol : variable out Thanks Jin Antony Paul <[EMAIL PROTECTED]> wrote: Why not use out.print() or you are trying to do something else ?. rgds Antony Paul On Tue, 22 Feb 2005

Re: how to print to web page instead of catalina.out

2005-02-23 Thread Eric J. Pastoor
Message - From: "Jin Wu" <[EMAIL PROTECTED]> To: "Tomcat Users List" ; "Antony Paul" <[EMAIL PROTECTED]> Sent: Wednesday, February 23, 2005 1:38 PM Subject: Re: how to print to web page instead of catalina.out I tried out.print(). The complation f

Re: how to print to web page instead of catalina.out

2005-02-23 Thread Viorel Dragomir
Users List ; Antony Paul Sent: Wednesday, February 23, 2005 20:38 Subject: Re: how to print to web page instead of catalina.out I tried out.print(). The complation failed. The error is: cannot resolve symbol symbol : variable out Thanks Jin Antony Paul <[EMAIL PROTECTED]> wrote: Why not

Re: how to print to web page instead of catalina.out

2005-02-23 Thread Jin Wu
wrote: > Hi, > > It seems that System.out.printlin("...") prints to catalina.out. Is there a > way I can print to web page? > > Thanks, > James > > __ > Do You Yahoo!? > Tired of spam? Yahoo

Re: how to print to web page instead of catalina.out

2005-02-22 Thread Antony Paul
Why not use out.print() or you are trying to do something else ?. rgds Antony Paul On Tue, 22 Feb 2005 20:26:41 -0800 (PST), Jin Wu <[EMAIL PROTECTED]> wrote: > Hi, > > It seems that System.out.printlin("...") prints to catalina.out. Is there a > way I can pr

how to print to web page instead of catalina.out

2005-02-22 Thread Jin Wu
Hi, It seems that System.out.printlin("...") prints to catalina.out. Is there a way I can print to web page? Thanks, James __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com

Re: Split catalina.out to separate stdout and stderr?

2005-02-17 Thread Tim Funk
You'd need to write a listener (or other code) which calls the appropriate System calls to set out and err in the JVM. -Tim [EMAIL PROTECTED] wrote: Hi, I'm runnning Tomcat 4.1.30 on Linux/Unix. I'm trying to get our app's debug info from catalina.out split into 2 separa

Split catalina.out to separate stdout and stderr?

2005-02-17 Thread [EMAIL PROTECTED]
Hi, I'm runnning Tomcat 4.1.30 on Linux/Unix. I'm trying to get our app's debug info from catalina.out split into 2 separate stderr and stdout files. I'm able to do this in Windows via the "System.out File" and "System.err File" registry parameters, but

Re: stdout -> console instead of catalina.out

2005-02-16 Thread Eric Wulff
Great, many thx for the advise. I also found that using command './catalina.sh run' to start Tomcat, as apposed to traditional './startup.sh', ensures that stdout goes to the console instead of catalina.out. Eric On Wed, 16 Feb 2005 11:22:20 -0500, David Smith <[EMAIL P

Re: stdout -> console instead of catalina.out

2005-02-16 Thread David Smith
The startup shell script is responsible for redirecting output to catalina.out. remove '> catalina.out' and you should be good to go. You could also pipe your output to the 'tee' utility. See the man pages for details. --David Eric Wulff wrote: I just started logging

stdout -> console instead of catalina.out

2005-02-16 Thread Eric Wulff
I just started logging via log4j and although my question stems from that, I believe it is more of a Tomcat question. How can I re-direct log messages to print to a Linux command window instead of printing to the file catalina.out, i.e. how do I tell Tomcat that standard out is the console from

RE: catalina.out

2005-01-28 Thread Richard Mixon (qwest)
atalina.core.ContainerBase.[Catalina].[localhos t]=INFO, > R ++ > > My Problem is the file catalina.out which is defined in catalina.sh. > > Any idea? > > Thnak you very MUCH. Sorry, I had just done the log4j and was trying to find a question to match my answ

AW: catalina.out

2005-01-28 Thread Edao Aliye
lem is the file catalina.out which is defined in catalina.sh. Any idea? Thnak you very MUCH. Regards, Aliye -Ursprüngliche Nachricht- Von: Richard Mixon (qwest) [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 28. Januar 2005 15:36 An: Tomcat Users List Betreff: RE: catalina.out Edao Aliye w

RE: catalina.out

2005-01-28 Thread Richard Mixon (qwest)
Edao Aliye wrote: > Hi all, > > Is there any way i can tell tomcat to limit the file catalina.out > in $CATALINA_HOME/logs to for example 2MB in Tomcat 5.5.4?? > > Please help! > > Thanks in advance It's in the 5.5 documentation how to limit log size and to rotate

catalina.out

2005-01-28 Thread Edao Aliye
Hi all, Is there any way i can tell tomcat to limit the file catalina.out in $CATALINA_HOME/logs to for example 2MB in Tomcat 5.5.4?? Please help! Thanks in advance

Re: catalina.out export to another file

2005-01-07 Thread Benoit - Althosting.fr
t;Julius Davies" <[EMAIL PROTECTED]> To: Cc: <[EMAIL PROTECTED]> Sent: Friday, January 07, 2005 8:53 AM Subject: RE: catalina.out export to another file Hi, Benoit, You can could try adding code like this to a jsp, and then hitting the jsp with a browser: <% OutputStream o

RE: catalina.out export to another file

2005-01-06 Thread Julius Davies
ill have taken over "catalina.out". Also, when starting Tomcat, you could use "catalina.sh run" command instead of "startup.sh" or "catalina.sh start" and redirect it. Like so: catalina.sh run > /var/log/myNewLogFile.log These are just two workarounds I

Re: catalina.out export to another file

2005-01-06 Thread Mark Thomas
file (steal in catalina.out) That's my configuration in server.xml for the host : appBase="/usr/local/jakarta-tomcat4.1/webapps/montest" unpackWARs="true" autoDeploy="true"> swallowOutput="true" /> directory="/usr/local/jakarta-tomcat4.1/webapps/m

catalina.out export to another file

2005-01-06 Thread Benoit - Althosting.fr
Hi, Sorry, I post this message again, I have no answer and I really need help :( I'm trying to redirect catalina logs to another file (montest_access_log.txt) but catalina out is not redirect in my file (steal in catalina.out) That's my configuration in server.xml for the host :

Re: changing the location of catalina.out

2004-12-15 Thread sven morales
AIL PROTECTED]> wrote: > Hi, > > I couldn't find any thread that specified how to > change the location > of catalina.out from the default location > $CATALINA_HOME/logs/catalina.out to, say, > /tmp/catalina.out. > > Could someone please give me some hints

changing the location of catalina.out

2004-12-15 Thread Eno Thereska
Hi, I couldn't find any thread that specified how to change the location of catalina.out from the default location $CATALINA_HOME/logs/catalina.out to, say, /tmp/catalina.out. Could someone please give me some hints on how to do this? Thank

RE: swallowOutput and catalina.out

2004-11-19 Thread Ryan Daly
i, > > >Is there a link you can point me toward to get log4j going instead of > >catalina.out? > > > >If I implement that now, then I'll be good to go to move to Tomcat 5.5? > > Link: http://logging.apache.org/log4j. > Steps: > 1. Download log4j 1.2.8 .

RE: redirect catalina.out

2004-11-18 Thread Shapira, Yoav
>Sent: Thursday, November 18, 2004 3:23 PM >To: [EMAIL PROTECTED] >Subject: Re: redirect catalina.out > >Shapira, Yoav wrote: > >> swallowOutput is not a Context attribute, it's a Logger attribute: >> change your context.xml to fix that. > >Really? That&#x

Re: redirect catalina.out

2004-11-18 Thread Shankar Unni
Shapira, Yoav wrote: swallowOutput is not a Context attribute, it's a Logger attribute: change your context.xml to fix that. Really? That's not what the doc says (or the source either). Just tested on 5.0.2x. (At least, I defined a in my , and standard output went to the log file configured fo

RE: redirect catalina.out

2004-11-18 Thread Shapira, Yoav
[EMAIL PROTECTED] >Subject: redirect catalina.out > >I am trying to redirect catalina.out to an application specific log >file. I thought I had it set up but it is still writing to >catalina.out. > >server.xml > > > className="org.apache.catalina.mbeans.ServerLife

redirect catalina.out

2004-11-18 Thread Scott Pippin
I am trying to redirect catalina.out to an application specific log file. I thought I had it set up but it is still writing to catalina.out. server.xml factory org.apache.catalina.users.MemoryUserDatabaseFactory

Re: Rotating catalina.out with Webmin

2004-11-15 Thread erh
On Mon, Nov 15, 2004 at 03:39:01PM -0600, Filip Hanik - Dev wrote: > this was not the case when using a java.io.FileOutputStream(), so I assume > you tried and verified this :) You are confused. It _is_ the case with FileOutputStream. The only way it could be otherwise is if the output

RE: Rotating catalina.out with Webmin

2004-11-15 Thread Phillip Qin
I don't remember. I think logrotate recreates it anyway. -Original Message- From: Carlos Oliva [mailto:[EMAIL PROTECTED] Sent: November 15, 2004 4:55 PM To: 'Tomcat Users List' Subject: RE: Rotating catalina.out with Webmin Hi Phillip, Why do you re-create the file? I

RE: Rotating catalina.out with Webmin

2004-11-15 Thread Carlos Oliva
Hi Phillip, Why do you re-create the file? Is it not enough to truncate it? -Original Message- From: Phillip Qin [mailto:[EMAIL PROTECTED] Sent: Monday, November 15, 2004 3:53 PM To: 'Tomcat Users List' Subject: RE: Rotating catalina.out with Webmin I don't know how to

Re: Rotating catalina.out with Webmin

2004-11-15 Thread Filip Hanik - Dev
ent: Monday, November 15, 2004 3:16 PM Subject: Re: Rotating catalina.out with Webmin On Mon, Nov 15, 2004 at 02:36:57PM -0600, Filip Hanik - Dev wrote: > nope, the moment you execute the mv the file handle has moved. switch to > cronolog to save you some time, > cronolog might recreate

Re: Rotating catalina.out with Webmin

2004-11-15 Thread erh
nce a file handle that a process has refers to the the underlying object, not the name, output will continue to be written to the original file and the new catalina.out will remain empty. eric - To unsubscribe, e-mail: [EMAIL P

RE: Rotating catalina.out with Webmin

2004-11-15 Thread Phillip Qin
I don't know how to use webadmin. I did it in command line (Debian) /etc/logrotate.d /usr/local/jakarta-tomcat-4.1.30/logs/catalina.out { rotate 5 weekly compress delaycompress notifempty missingok create 0640 tu3404nl tu3

RE: Rotating catalina.out with Webmin

2004-11-15 Thread Carlos Oliva
: Rotating catalina.out with Webmin I found that logrotate is the easiest. -Original Message- From: Carlos Oliva [mailto:[EMAIL PROTECTED] Sent: November 15, 2004 3:28 PM To: 'Tomcat Users List' Subject: RE: Rotating catalina.out with Webmin Hi Filip, I set-up the Webmin Log Rotation en

Re: Rotating catalina.out with Webmin

2004-11-15 Thread Filip Hanik - Dev
t; <[EMAIL PROTECTED]> To: "'Tomcat Users List'" <[EMAIL PROTECTED]> Sent: Monday, November 15, 2004 2:28 PM Subject: RE: Rotating catalina.out with Webmin Hi Filip, I set-up the Webmin Log Rotation entry to the following: 1) Re-create log file after rotation? Yes, with mode

RE: Rotating catalina.out with Webmin

2004-11-15 Thread Phillip Qin
I found that logrotate is the easiest. -Original Message- From: Carlos Oliva [mailto:[EMAIL PROTECTED] Sent: November 15, 2004 3:28 PM To: 'Tomcat Users List' Subject: RE: Rotating catalina.out with Webmin Hi Filip, I set-up the Webmin Log Rotation entry to the following: 1)

RE: Rotating catalina.out with Webmin

2004-11-15 Thread Carlos Oliva
Default Should not this maintain the file handle? -Original Message- From: Filip Hanik - Dev [mailto:[EMAIL PROTECTED] Sent: Monday, November 15, 2004 3:19 PM To: Tomcat Users List Subject: Re: Rotating catalina.out with Webmin if you dont get webmin fixed, I recommend cronolog instead

RE: Rotating catalina.out with Webmin

2004-11-15 Thread Shapira, Yoav
ated for you. (Note this all applies to Tomcat 5.0.x and older, not to 5.5 and newer) Yoav Shapira http://www.yoavshapira.com >-Original Message- >From: Filip Hanik - Dev [mailto:[EMAIL PROTECTED] >Sent: Monday, November 15, 2004 3:19 PM >To: Tomcat Users List >Subject: Re

Re: Rotating catalina.out with Webmin

2004-11-15 Thread Filip Hanik - Dev
logs/%Y-%m-%d.catalina.out >> /dev/null 2>&1 this will rotate the logs daily Filip - Original Message - From: "Carlos" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, November 15, 2004 2:05 PM Subject: Rotating catalina.out with Webmin Hi Forum, C

Rotating catalina.out with Webmin

2004-11-15 Thread Carlos
Hi Forum, Could someone recommend settings for using the log rotation of Webmin in order to rotate catalina.out (any cautionary measures)? I just created an entry in Webmin to rotate the catalina.out file weekly with all the default settings (keeping the last four copies). Are there any

RE: swallowOutput and catalina.out

2004-10-27 Thread Dale, Matt
t: RE: swallowOutput and catalina.out On Wed, 2004-10-27 at 09:27, Shapira, Yoav wrote: > Hi, > Hmm, I'm not sure if swallowOutput on the DefaultContext works. I've > only used it on a proper Context declaration. What Tomcat version are > you using? Sorry. That would'

RE: swallowOutput and catalina.out

2004-10-27 Thread Dale, Matt
You have the right idea but in the wrong place. You need to define a Logger for each Context and put swallowOutput on that. -Original Message- From: Ryan Daly [mailto:[EMAIL PROTECTED] Sent: 27 October 2004 14:17 To: Tomcat Users List Subject: swallowOutput and catalina.out All

RE: swallowOutput and catalina.out

2004-10-27 Thread Shapira, Yoav
Hi, >Is there a link you can point me toward to get log4j going instead of >catalina.out? > >If I implement that now, then I'll be good to go to move to Tomcat 5.5? Link: http://logging.apache.org/log4j. Steps: 1. Download log4j 1.2.8 .zip file 2. Extract file wherever, take lo

RE: swallowOutput and catalina.out

2004-10-27 Thread Ryan Daly
On Wed, 2004-10-27 at 09:55, Shapira, Yoav wrote: > Hi, > Yeah. System.out is for novices and small apps. Real apps need a real > logging toolkit. Is there a link you can point me toward to get log4j going instead of catalina.out? If I implement that now, then I'll be good to

RE: swallowOutput and catalina.out

2004-10-27 Thread Shapira, Yoav
>Subject: Re: swallowOutput and catalina.out > >You implemented log4j to log what usually goes into catalina.out? >-- > >On Wed, 2004-10-27 at 09:34, Ben Souther wrote: >> >> >> >> This is how I did it before implementing log4j. > >

Re: swallowOutput and catalina.out

2004-10-27 Thread Ryan Daly
You implemented log4j to log what usually goes into catalina.out? -- On Wed, 2004-10-27 at 09:34, Ben Souther wrote: > > > > This is how I did it before implementing log4j. - To unsubscribe, e-mail: [EMAIL PR

RE: swallowOutput and catalina.out

2004-10-27 Thread Ryan Daly
On Wed, 2004-10-27 at 09:27, Shapira, Yoav wrote: > Hi, > Hmm, I'm not sure if swallowOutput on the DefaultContext works. I've > only used it on a proper Context declaration. What Tomcat version are > you using? Sorry. That would've helped. It's Tomcat v5.0.28. If you're saying it should go i

Re: swallowOutput and catalina.out

2004-10-27 Thread Ben Souther
e instance of Tomcat. I want > to get all of the logging that goes to catalina.out to go to the > individual web app logs. > > I'm trying to use swallowOutput, but I'm not sure if I have it in the > right spot. Something is obviously not configured properly becau

RE: swallowOutput and catalina.out

2004-10-27 Thread Steve Kirk
t Users List > Subject: swallowOutput and catalina.out > > > All: > > Sorry if I've missed a thread regarding this. > > I have multiple web applications on a single instance of > Tomcat. I want > to get all of the logging that goes to catalina.out to go

RE: swallowOutput and catalina.out

2004-10-27 Thread Shapira, Yoav
Wednesday, October 27, 2004 9:17 AM >To: Tomcat Users List >Subject: swallowOutput and catalina.out > >All: > >Sorry if I've missed a thread regarding this. > >I have multiple web applications on a single instance of Tomcat. I want >to get all of the logging that go

swallowOutput and catalina.out

2004-10-27 Thread Ryan Daly
All: Sorry if I've missed a thread regarding this. I have multiple web applications on a single instance of Tomcat. I want to get all of the logging that goes to catalina.out to go to the individual web app logs. I'm trying to use swallowOutput, but I'm not sure if I have it in

RE: where is Catalina.out

2004-10-14 Thread Dale, Matt
I've got no ideas then, i've never had this problem. -Original Message- From: Fred Yu [mailto:[EMAIL PROTECTED] Sent: 14 October 2004 10:03 To: Tomcat Users List Subject: RE: where is Catalina.out No, I run tomcat by executing "startup.bat". -Original Mes

RE: where is Catalina.out

2004-10-14 Thread Fred Yu
No, I run tomcat by executing "startup.bat". -Original Message- From: Dale, Matt [mailto:[EMAIL PROTECTED] Sent: Thursday, October 14, 2004 9:52 PM To: Tomcat Users List Subject: RE: where is Catalina.out Are you running tomcat as a service? -Original Message- Fro

RE: where is Catalina.out

2004-10-14 Thread Dale, Matt
Are you running tomcat as a service? -Original Message- From: Fred Yu [mailto:[EMAIL PROTECTED] Sent: 14 October 2004 03:00 To: [EMAIL PROTECTED] Subject: where is Catalina.out Does anyone know why I can not find Catalina.out file under logs directory? I followed steps to install

RE: Catalina.out errors

2004-10-13 Thread Shapira, Yoav
cat server classpath? Yoav Shapira http://www.yoavshapira.com >-Original Message- >From: Ciaran Hanley [mailto:[EMAIL PROTECTED] >Sent: Tuesday, October 12, 2004 3:42 PM >To: 'Tomcat Users List' >Subject: RE: Catalina.out errors > >I am running it from the

RE: Catalina.out errors

2004-10-12 Thread Ciaran Hanley
- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: 12 October 2004 20:26 To: Tomcat Users List Subject: RE: Catalina.out errors Hi, Usually the full stack trace will be available. We didn't remove that, as it's an extremely useful feature. Are you running Tomcat as a service o

RE: Catalina.out errors

2004-10-12 Thread Shapira, Yoav
[EMAIL PROTECTED] >Sent: Tuesday, October 12, 2004 3:21 PM >To: Tomcat User Mailing List >Subject: Catalina.out errors > >Hi, > > > >We have moved a tomcat webapp to a new server which uses tomcat 5.0.27, (we >were using version 5.0.18 on the old server). When an err

Catalina.out errors

2004-10-12 Thread Ciaran Hanley
Hi, We have moved a tomcat webapp to a new server which uses tomcat 5.0.27, (we were using version 5.0.18 on the old server). When an error is thrown no stack trace is printed in the catalina.out or in the other log files as was the case with the old server. Is there some configurations I

Re: Where is Catalina.out?

2004-10-11 Thread Hassan Schroeder
Sng Wee Jim wrote: Correct me if I am wrong, Catalina.out is only created when tomcat is running on unix. OK, you're corrected :-) I see catalina.out created on W2K as well as Mac OS X, Linux... -- Hassan Schroeder - [EMAIL PROTECTED] Webtuitive Design === (+1) 40

RE: Where is Catalina.out?

2004-10-11 Thread Fred Yu
Thanks Jim I have tried on linux (Redhat) and can not find Catalina.out under logs directory, that was the reason I tried that on windows 2000. Cheers Fred -Original Message- From: Sng Wee Jim [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 12, 2004 4:23 PM To: Fred Yu; [EMAIL

RE: Where is Catalina.out?

2004-10-11 Thread Sng Wee Jim
On windows the logs will go to /log directory. It will appear in file localhost_log.-MM-dd.txt Correct me if I am wrong, Catalina.out is only created when tomcat is running on unix. - Jim -Original Message- From: Fred Yu [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 12, 2004 10

Where is Catalina.out?

2004-10-11 Thread Fred Yu
Hi I just downloaded and unpacked tomcat 5.0.28 to window 2000 machine. I deployed my web war file and am able to run it through window explorer. But I can not find Catalina.out file under logs directory. The tomcat is in default configuration. Can anyone tell me why? Cheers Fred

Tomcat print warning at catalina.out

2004-09-08 Thread pratak rattanawila
Dear all I found tomcat print out warning like below. What does it mean? Sep 9, 2004 10:34:10 AM org.apache.jasper.runtime.PageContextImpl release WARNING: Internal error flushing the buffer in release() Best Regards Pratak.

Re: logging something to catalina.out

2004-09-06 Thread Rhino
- Original Message - From: "Christian Fritze" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Monday, September 06, 2004 8:18 AM Subject: Re: logging something to catalina.out > Rhino wrote: > > > > If I'm not m

Re: logging something to catalina.out

2004-09-06 Thread muhammed soyer
ROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Monday, September 06, 2004 3:10 PM Subject: Re: logging something to catalina.out - Original Message - From: "muhammed soyer" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL

Re: logging something to catalina.out

2004-09-06 Thread Christian Fritze
Rhino wrote: > > If I'm not mistaken, all you need is: > > System.out.println("I should study log4j in a few days..."). Try replacing 'out' with 'err', then it should work... ;-) Christian -- Grüße aus Europas größtem Greetings from Europe's largest Urban Sprawl (DUDOMA -- Duisburg Dor

Re: logging something to catalina.out

2004-09-06 Thread Rhino
- Original Message - From: "muhammed soyer" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Monday, September 06, 2004 7:53 AM Subject: logging something to catalina.out Hello, How can I write something to the logfile . &qu

logging something to catalina.out

2004-09-06 Thread muhammed soyer
<< Bu mail GESNET sunucusu tarafindan virus kontrolunden gecirilmistir.>>

RE: Rotation of Catalina.out

2004-09-03 Thread Andrew Janian
<<<<<<<<<< Hope that helps, Andrew -Original Message- From: David Goodenough [mailto:[EMAIL PROTECTED] Sent: Friday, September 03, 2004 8:47 AM To: Tomcat Users List Subject: Re: Rotation of Catalina.out Well actually I am using Log4j (under the covers) I thin

Re: Rotation of Catalina.out

2004-09-03 Thread David Goodenough
e apache site I am not sure I know what I need to modify. TIA David On Friday 03 September 2004 13:55, Andrew Janian wrote: > Here is a couple links that should explain the lack of rotation of > catalina.out: > > 1) http://jakarta.apache.org/tomcat/faq/misc.html#catalina.out > &g

RE: Rotation of Catalina.out

2004-09-03 Thread Andrew Janian
Here is a couple links that should explain the lack of rotation of catalina.out: 1) http://jakarta.apache.org/tomcat/faq/misc.html#catalina.out This one is from the tomcat website and is just the question you are asking. It says that you should not be using stdout (System.out.println

Rotation of Catalina.out

2004-09-03 Thread David Goodenough
I am running Tomcat 5.0.27 on a Debian Unstable system in /usr/local/share/tomcat5. Under this directory is the logs directory and that contains lots of localhost_log.-mm-dd.txt files (one for each day) but only one catalina.out file. In server.xml there are two Logger tags

RE: Request parameters in catalina.out

2004-08-25 Thread Mike Curwen
[EMAIL PROTECTED] > Sent: Wednesday, August 25, 2004 3:16 PM > To: Tomcat Users List > Subject: RE: Request parameters in catalina.out > > > I wouldn't say "mis-configured". When I changed from a > similar configuration to a logger for all the jk stuff (e.g. >

RE: Request parameters in catalina.out

2004-08-25 Thread Benjamin Armintor
vel of 0, which registered as "trace enabled", which meant some classes in the jk package dumped the whole request. For me, it was file uploads, so catalina.out was very large indeed. I also had a clue in that the catalina.out entry was prefixed by some debugging information from the jk cl

  1   2   3   >