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

82 questions
0
votes
1 answer

StackOverflowError: null at com.google.gson.stream.JsonWriter.value

Referring to this other question, it seems I have a problem with the whole method that I do not understand. In fact, right now I do not have the error specified in the question anymore, but I have a new one: 2019-04-16 16:32:16.843 ERROR 7452 ---…
Usr
  • 2,628
  • 10
  • 51
  • 91
0
votes
0 answers

Override apache tomcat log file rotation

In tomcat/logs directory we have different set of files which are normally rotated everyday. Is there any procedure to override rotating mechanism for catalina.out, localhost_access_log, manager.${DATE}.log, host-manager.${DATE}.log I don't want to…
Umair
  • 860
  • 2
  • 13
  • 30
0
votes
1 answer

How can I move catalina.out with log4j in Azure blob storage

How this can be achieve? I have a catalina.out log in a prod server which is growing fast in space. 6.7 GB in couple of days . I had the Idea at the begging to create a cronjob to be executed 2 or 3 days a week to run a script that copy catalina log…
Chanafot
  • 736
  • 4
  • 22
  • 46
0
votes
0 answers

Nach Umzug auf neuen Server Authentication Failure

Caused by an Uni project, we transferd a Website to another server. By logging in to the Website we get the following failure: org.apache.shiro.authc.AuthenticationException: Authentication failed for token submission…
schali95
  • 13
  • 5
0
votes
1 answer

Fast-growing log file under tomcat 8.0

I have a question regarding tomcat in version 8.0. I have a fast growing catalina.out log file. Where can I find the setting so that the log only grows to a certain size or maybe I can disable logging into catalina.out at all?
0
votes
1 answer

log rotation of catalina.out using catalina.sh on daily basis

I just wanted to know that if I want to replace: "$CATALINA_OUT" 2>&1 & to rotate logs on daily bases what should I replace it with. I understand that for: "$CATALINA_BASE"/logs/catalina.out 2>&1 & we should replace it with this line 2>&1…
dev1
  • 1
  • 3
0
votes
0 answers

Logging using log4j in catalina.out file

Is there any way by which we can block the logging of printstacktrace in catalina.out file. i want to record the other logs in this file but i dont want to record the printstacktrace related logs. Currently we are using log4j version 1 and tomcat…
Deepti
  • 9
  • 5
0
votes
1 answer

Prevent to log both to catalina.out and log4j logfiles

I know, that there are many similar questions and answers about logging to catalina.out and logging to log4j logfiles, but so far i haven't found a correct answer to my problem and i don't want to turn off logging to catalina.out My motivation is to…
7dev70
  • 31
  • 5
0
votes
1 answer

Tomcat catalina.out flooded, is custom logging possible?

When a client has our web application loaded, a particular webservice is called every 5 seconds and it returns a very large piece of data. This floods the catalina.out log with redundant info which makes it hard to find information about other…
0
votes
1 answer

tomcat 6 - update the catalina.out file location

I am working in a Linux server which comes with tomcat preinstalled(version 6) and we do not have admin access. I am trying to change the log file location(catalina.out), but it is not working. I updated the tomcat6.conf file by adding the…
user115391
  • 185
  • 1
  • 8
  • 22
0
votes
1 answer

Liferay portal 6.2 Errror - Could not execute JDBC batch update; SQL [insert into DLFileRank -

In Linux Centos, I started up my liferay portal 6.2 ce-ga2. Every things were okay, but I saw these erorrs in catalina.out log file: 23:31:05,917 ERROR [http-bio-80-exec-404][status_jsp:750]…
brelian
  • 403
  • 2
  • 15
  • 31
0
votes
0 answers

tomcat still writes application log in catalina.out though i undeployed the application

I deployed an application in Apache tomcat in a centOS server and after a while my application faced a connection reset error. As my application writes everything in catalina.out so I found that it's writing error log infinitely in…
0
votes
2 answers

tomcat catalina keeps stoplogging

I have application running on 6 servers and catalina.out logs stop after few days on all servers. the application is working as expected and the access logs also has updating. but not sure why the catalina.out stopped. to restart the logging I need…
raindrop
  • 525
  • 1
  • 9
  • 16
0
votes
1 answer

Tomcat Website Returning Blank Pages

I am have been grinding since last week trying to deploy a tomcat7 website. I am using JDK8. I check my catalina out file and this is the only error that I see. Maybe it has something to do with JDK8 being used? Jul 24, 2015 4:17:03 PM…
Lizzard
  • 193
  • 2
  • 12
0
votes
3 answers

Email Me Every Time Catalina.out Receives an Exception

Struggling with finding a solution to the pain of having to constantly access my server, load the catalina.out file, and wade through the mess to find exceptions. What are developers using to constantly monitor the tomcat catalina.out file and send…
ryandlf
  • 27,155
  • 37
  • 106
  • 162