Tomcat8 uses cronolog to split Catalina.Out logs

Tomcat8 uses cronolog to split Catalina.Out logs

background

If the catalina.out log file generated by tomcat is not split, the file will often become larger and larger, affecting efficiency. At the same time, if you need to find a log file, it is quite troublesome to search in such a large catalina.out log file. It is best to split the catalina.out log file by day. Here is a split method: Use cronolog to split catalina.out log files

method

Install cronolog-1.6.2.tar.gz

Download address: cronolog-1.6.2.tar.gz

tar -zxvf cronolog-1.6.2.tar.gz
cd cronolog-1.6.2
./configre # --prefix=/opt/cronolog, you can specify the installation directory, the default is /usr/local/sbin/cronolog
make
make install

tomcat configuration

Versions prior to Tomcat 7:

vim tomcat/bin/catalina.sh
# Comment out (#)
touch "$CATALINA_BASE"/logs/catalina.out
# Modify the two org.apache.catalina.startup.Bootstrap “$@” in the catalina.sh file in the tomcat bin directory start \
>> "$CATALINA_BASE"/logs/catalina.out 2>&1 &
# start 2>&1 for org.apache.catalina.startup.Bootstrap "$@" \
| /usr/local/sbin/cronolog "$CATALINA_BASE"/logs/catalina.%Y-%m-%d.out >> /dev/null &

After the completion, restart Tomcat and you can see the logs in the catalina.out.2015-09-13 format in the logs file.

Tomcat7 and later versions:

vi tomcat/bin/catalina.sh
#The first step is if [ -z "$CATALINA_OUT" ] ; then
CATALINA_OUT="$CATALINA_BASE"/logs/catalina.out
fi
Modify to if [ -z "$CATALINA_OUT" ] ; then
CATALINA_OUT="$CATALINA_BASE"/logs/catalina.%Y-%m-%d.out
fi
# The second step will touch "$CATALINA_OUT"
Change to #touch "$CATALINA_OUT"
echi "$CATALINA_OUT"
# The third step is to start org.apache.catalina.startup.Bootstrap "$@" \
>> "$CATALINA_OUT" 2>&1 &
Modify to org.apache.catalina.startup.Bootstrap "$@" start 2>&1 \
| /usr/local/sbin/cronolog "$CATALINA_OUT" >> /dev/null &

After completion, restart Tomcat and you can see the catalina.out.2021-09-01 style log in the logs file.

This is the end of this article about Tomcat8 using cronolog to split Catalina.Out logs. For more information about Tomcat cronolog Catalina.Out log splitting, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Tomcat uses Log4j to output catalina.out log
  • Detailed explanation of three ways to cut catalina.out logs in tomcat
  • Solve the problem of catalina.out continuing to accumulate in Tomcat
  • Catalina.out log file segmentation under Linux tomcat

<<:  Vue+SSM realizes the preview effect of picture upload

>>:  A look into tool-based websites: the definition of tool-based websites and typical case analysis (pictures and text)

Recommend

mysql 8.0.19 winx64.zip installation tutorial

This article records the installation tutorial of...

The difference between animation and transition

The difference between CSS3 animation and JS anim...

How to set the number of mysql connections (Too many connections)

During the use of mysql, it was found that the nu...

Sample code using the element calendar component in Vue

First look at the effect diagram: The complete co...

Vue.js manages the encapsulation of background table components

Table of contents Problem Analysis Why encapsulat...

How to obtain and use time in Linux system

There are two types of Linux system time. (1) Cal...

Implementing a shopping cart with native JavaScript

This article shares the specific code of JavaScri...

A brief discussion on the performance issues of MySQL paging limit

MySQL paging queries are usually implemented thro...

Add and delete table information using javascript

Getting Started with JavaScript JavaScript is a l...

How to connect to virtual machine MySQL using VScode in window environment

1. Virtual Machine Side 1. Find the mysql configu...

A Preliminary Study on Vue Unit Testing

Table of contents Preface Why introduce unit test...

MySQL 8.0.11 installation and configuration method graphic tutorial (win10)

This article records the installation and configu...

MySQL DML language operation example

Additional explanation, foreign keys: Do not use ...

Detailed process record of Vue2 initiating requests using Axios

Table of contents Preface Axios installation and ...