vote up 2 vote down star

Hi All,

Requirement is this ...

We have our 3 web-applications deployed in RHEL-5 server, we deployed apps with tomcat 6.0.16. We want to configure stdout, stderr, which are coming in tomcat/logs/catalina.out in app specific log file like,

tomcat/logs/app1.log tomcat/logs/app2.log tomcat/logs/app3.log

we are using log4j, but it is only generating logging details we need stdout per-app which is coming in tomcat/logs/catalina.out

Any Help Appreciated ...

flag

36% accept rate

1 Answer

vote up 2 vote down check

Try this,

  1. Each application must use its own log4j. You can achieve this by placing log4j.jar in WEB-INF/lib of each application.
  2. In each log4j's configuration file (default location is WEB-INF/classes), specify the log file name, e.g. log4j.appender.AppLog.File=${catalina.home}/logs/app1.log.
  3. Add swallowOutput="true" for each context so stdout, stderr will go to your own log.

We do this on Tomcat 5.5 but I think it should work on 6.0 also.

EDIT: Here is our META-INF/context.xml,

<?xml version="1.0" encoding="UTF-8"?>
<Context override="true" swallowOutput="true" useNaming="false">
  <WatchedResource>WEB-INF/web.xml</WatchedResource>
  <Manager pathname=""/>
</Context>
link|flag
Thanks friend ... I want to know exactly where i have to put swallowOutput="true", is it /tomcat/conf/Catalina/www.app.com/context.xml and in which tag i have to put swallowOutput="true" ? – Bihag Raval Aug 27 at 4:15
I edited the answer and added our context.xml. This one is better place than the one you mentioned because it doesn't depend on the container configuration. – ZZ Coder Aug 27 at 4:50
If I am putting given context.xml than database connection is not working ... what can be problem ? we are not getting db connection from context.xml ... – Bihag Raval Aug 27 at 7:21
If you use JNDI resource to define your datasource, you need to enable naming. Remove useNaming="false". – ZZ Coder Aug 27 at 12:33
Thanks a lot ZZ Coder ... – Bihag Raval Aug 28 at 4:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.