
Specific method:
(Recommended tutorial: apache)
1. Create script
vim /root/project/tomcat_logs_task/auto-del-15-days-ago-log.sh
# /bin/bash
#定期删除tomcat 定期删除15天前的已分割日志
#日志路径
apache_tomcat_api_8079=/root/app/apache-tomcat-job36-api-8079/logs
apache_tomcat_api_8080=/root/app/apache-tomcat-job36-api-8080/logs
apache_tomcat_admin_8081=/root/app/apache-tomcat-job36-admin-8081/logs
apache_tomcat_admin_8082=/root/app/apache-tomcat-job36-admin-8082/logs
find $apache_tomcat_api_8079 -mtime +15 -name "localhost_access_log.*" -exec rm -rf {} \;
find $apache_tomcat_api_8079 -mtime +15 -name "localhost.*" -exec rm -rf {} \;
find $apache_tomcat_api_8079 -mtime +15 -name "manager.*" -exec rm -rf {} \;
find $apache_tomcat_api_8079 -mtime +15 -name "catalina.*" -exec rm -rf {} \;
find $apache_tomcat_api_8079 -mtime +15 -name "host-manager.*" -exec rm -rf {} \;
find $apache_tomcat_api_8080 -mtime +15 -name "localhost_access_log.*" -exec rm -rf {} \;
find $apache_tomcat_api_8080 -mtime +15 -name "localhost.*" -exec rm -rf {} \;
find $apache_tomcat_api_8080 -mtime +15 -name "manager.*" -exec rm -rf {} \;
find $apache_tomcat_api_8080 -mtime +15 -name "catalina.*" -exec rm -rf {} \;
find $apache_tomcat_api_8080 -mtime +15 -name "host-manager.*" -exec rm -rf {} \;
find $apache_tomcat_admin_8081 -mtime +15 -name "localhost_access_log.*" -exec rm -rf {} \;
find $apache_tomcat_admin_8081 -mtime +15 -name "localhost.*" -exec rm -rf {} \;
find $apache_tomcat_admin_8081 -mtime +15 -name "manager.*" -exec rm -rf {} \;
find $apache_tomcat_admin_8081 -mtime +15 -name "catalina.*" -exec rm -rf {} \;
find $apache_tomcat_admin_8081 -mtime +15 -name "host-manager.*" -exec rm -rf {} \;
find $apache_tomcat_admin_8082 -mtime +15 -name "localhost_access_log.*" -exec rm -rf {} \;
find $apache_tomcat_admin_8082 -mtime +15 -name "localhost.*" -exec rm -rf {} \;
find $apache_tomcat_admin_8082 -mtime +15 -name "manager.*" -exec rm -rf {} \;
find $apache_tomcat_admin_8082 -mtime +15 -name "catalina.*" -exec rm -rf {} \;
find $apache_tomcat_admin_8082 -mtime +15 -name "host-manager.*" -exec rm -rf {} \;2. Make an execution plan
vim /root/project/tomcat_logs_task/auto-del-15-days-ago-log.cron 0 1 * * * . /etc/profile;/bin/sh /root/project/tomcat_logs_task/auto-del-15-days-ago-log.sh
3. Join the task
crontab -e 0 1 * * * . /etc/profile;/bin/sh /root/project/tomcat_logs_task/auto-del-15-days-ago-log.sh
The above is the detailed content of Tomcat implements regular deletion of logs. For more information, please follow other related articles on the PHP Chinese website!
Apache's Legacy: What Made It Famous?Apr 15, 2025 am 12:19 AMApachebecamefamousduetoitsopen-sourcenature,modulardesign,andstrongcommunitysupport.1)Itsopen-sourcemodelandpermissiveApacheLicenseencouragedwidespreadadoption.2)Themodulararchitectureallowedforextensivecustomizationandadaptability.3)Avibrantcommunit
The Advantages of Apache: Performance and FlexibilityApr 14, 2025 am 12:08 AMApache's performance and flexibility make it stand out in a web server. 1) Performance advantages are reflected in efficient processing and scalability, which are implemented through multi-process and multi-threaded models. 2) Flexibility stems from the flexibility of modular design and configuration, allowing modules to be loaded and server behavior adjusted according to requirements.
What to do if the apache80 port is occupiedApr 13, 2025 pm 01:24 PMWhen the Apache 80 port is occupied, the solution is as follows: find out the process that occupies the port and close it. Check the firewall settings to make sure Apache is not blocked. If the above method does not work, please reconfigure Apache to use a different port. Restart the Apache service.
How to solve the problem that apache cannot be startedApr 13, 2025 pm 01:21 PMApache cannot start because the following reasons may be: Configuration file syntax error. Conflict with other application ports. Permissions issue. Out of memory. Process deadlock. Daemon failure. SELinux permissions issues. Firewall problem. Software conflict.
How to set the cgi directory in apacheApr 13, 2025 pm 01:18 PMTo set up a CGI directory in Apache, you need to perform the following steps: Create a CGI directory such as "cgi-bin", and grant Apache write permissions. Add the "ScriptAlias" directive block in the Apache configuration file to map the CGI directory to the "/cgi-bin" URL. Restart Apache.
How to view your apache versionApr 13, 2025 pm 01:15 PMThere are 3 ways to view the version on the Apache server: via the command line (apachectl -v or apache2ctl -v), check the server status page (http://<server IP or domain name>/server-status), or view the Apache configuration file (ServerVersion: Apache/<version number>).
How to restart the apache serverApr 13, 2025 pm 01:12 PMTo restart the Apache server, follow these steps: Linux/macOS: Run sudo systemctl restart apache2. Windows: Run net stop Apache2.4 and then net start Apache2.4. Run netstat -a | findstr 80 to check the server status.
How to delete more than server names of apacheApr 13, 2025 pm 01:09 PMTo delete an extra ServerName directive from Apache, you can take the following steps: Identify and delete the extra ServerName directive. Restart Apache to make the changes take effect. Check the configuration file to verify changes. Test the server to make sure the problem is resolved.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

SublimeText3 Linux new version
SublimeText3 Linux latest version

Dreamweaver CS6
Visual web development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software






