Questions tagged [catalina.out]

When running Tomcat on unixes, the console output is usually redirected to the file named catalina.out.

When running Tomcat on unixes, the console output is usually redirected to the file named catalina.out. The name is configurable using an environment variable. Whatever is written to System.err/out will be caught into that file. That may include:

  • Uncaught exceptions printed by java.lang.ThreadGroup.uncaughtException(..)
  • Thread dumps, if you requested them via a system signal

For more, please read: https://tomcat.apache.org/tomcat-7.0-doc/logging.html#Console

75 questions
41
votes
5 answers

catalina.out rolling with Tomcat 6.0

I have a default tomcat installation with no change to the logging configuration. The log files (in particular catalina.out) appear to be getting rolled (daily) correctly. However as well as the daily logs there is also a catalina.out file, which…
objects
  • 8,471
  • 4
  • 26
  • 38
39
votes
2 answers

How to check container log of tomcat?

How do I check the container log of tomcat? I get this error from the catalina.out log: SEVERE [localhost-startStop-1] org.apache.catalina.core.StandardContext.startInternal One or more listeners failed to start. Full details will be found in the…
Ben
  • 5,584
  • 4
  • 25
  • 36
19
votes
3 answers

How to correct delete catalina.out?

I couldn't restart Tomcat webserver. But catalina.out get very big. I have tried delete on test server and created new empty. But Tomcat doesn't write anymore in new catalina.out. How correct delete/create empty new one ?
user710818
  • 20,710
  • 55
  • 138
  • 197
15
votes
15 answers

java.lang.IllegalArgumentException: Invalid or unreadable WAR file : error in opening zip file

I got this error in Catalina.2011-03-30.log when my display.war file executed on Tomcat. The error is shown below: Mar 30, 2011 8:01:31 PM org.apache.catalina.startup.ContextConfig init SEVERE: Exception fixing docBase for context [/Display]…
insomiac
  • 5,354
  • 7
  • 42
  • 71
15
votes
1 answer

Linux Tomcat Errors

I'm having trouble launching tomcat on my linux server. I run startup.sh, and get the Tomcat Started logging, but then can't access anything on localhost:8080. $CATALINA_HOME/bin/startup.sh Using CATALINA_BASE: …
leedsunited92
  • 542
  • 5
  • 12
9
votes
4 answers

There is no catalina.out

I have no idea, how and what to set up, to have catalina.out on the Tomcat on my computer. I use Tomcat 6.0.28, zipped-version on Windows XP. To start server I just run startup.bat-file. Do I do something wrong?! Thanks in advance for any…
Tima
  • 12,040
  • 22
  • 74
  • 121
8
votes
3 answers

Tomcat 6 memory leaks log entries

Below is outtake of unique entries in my Catalina.out file on CentOS machine. I'm running Tomcat 6 with spring 3 and my application. There is whole bunch of them so I just picked some that keep repeating. This doesn't happen all the time but it…
MatBanik
  • 24,206
  • 38
  • 107
  • 172
6
votes
1 answer

Uncaught exceptions in Tomcat print to localhost.[date].log instead of catalina.out

I'm running tomcat 6.0.20 (with spring, if that matters) and can't seem to get stack traces from uncaught exceptions thrown from within my code to print to catalina.out. I'm trying to mimic the output that you see in the eclipse console. When I…
Keith
  • 2,778
  • 3
  • 23
  • 29
4
votes
2 answers

Catalina.out Memory leak error

I still see this error in tomcat/logs/catalina.out. Dec 29, 2011 4:04:36 PM org.apache.catalina.loader.WebappClassLoader clearReferencesThreads SEVERE: The web application [/LoggingMonitor] appears to have started a thread named [Timer-1] but has…
Rookie
  • 8,182
  • 15
  • 55
  • 89
4
votes
1 answer

Missing tomcat logs (catalina.out) after Beanstalk upgrade to "64bit Amazon Linux 2 v4.1.2 running Tomcat 8.5 Corretto 8"

Im trying to upgrade beanstalk version from "64bit Amazon Linux 2018.03 v3.4.0 running Tomcat 8.5 Java 8" to "64bit Amazon Linux 2 v4.1.2 running Tomcat 8.5 Corretto 8". I have my app deployed an running successfully on the new platform version (its…
4
votes
3 answers

Unable to eliminate Tomcat Cache warnings in catalina.out

Since switching to Tomcat 8, I continually get messages like this in my catalina.out org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/intranet/includes/MailFunctions.jsp] to the cache because there was insufficient…
a344254
  • 319
  • 2
  • 6
  • 17
4
votes
2 answers

Tomcat 6 Heap Size - Is this correct?

I am running multiple tomcats on a Red Hat box and I would like to configure separate heap size for each of them (some instances use more memory). Can I set the heap size min/max bt entering the following into the catalina.sh…
user353829
  • 1,064
  • 5
  • 20
  • 33
3
votes
2 answers

Error "org.apache.catalina.realm.CombinedRealm startInterna" in Catalina.out

I have a SOAP based webservice being implemented in Netbeans.I have some issues on the server side and its giving me Error 500, the internal error, since I can't debug it automatically its telling me to check out logs but my catalina.out is full of…
rosa
  • 55
  • 2
  • 6
3
votes
1 answer

Mitigating storage issues with catalina.out on Elastic Beanstalk

I'm having an issue where the catalina.out log file on a Tomcat 8 Java 8 Elastic Beanstalk instance is expanding to the point where there's no storage left in the instance, which does not allow the instance to keep sending logs to CloudWatch, and…
3
votes
1 answer

Why is catalina.out empty

I have logrotate working perfectly, only thing is that when the log file is saved with the date at the end of the filename like: catalina.out-20180926. But there is nothing being logged to catalina.out. Everything is owned by root, tomcat is running…
juju
  • 535
  • 1
  • 4
  • 15
1
2 3 4 5