Linux automatically deletes logs and example commands from n days ago

Linux automatically deletes logs and example commands from n days ago

1. Delete file command:

find the corresponding directory -mtime + number of days -name "file name" -exec rm -rf {} \;

Example command:

find /opt/soft/log/ -mtime +30 -name "*.log" -exec rm -rf {} \;

illustrate:

Delete all files with ".log" in the /opt/soft/log/ directory that are older than 30 days. The specific parameters are described as follows:

find: Linux search command, users search for files with specified conditions;

/opt/soft/log/: any directory you want to clean;

-mtime: standard statement writing method;

+30: Search for files 30 days ago, where numbers represent the number of days;

"*.log": the type of data you want to find, "*.jpg" means to find all files with the extension jpg, "*" means to find all files, this can be used flexibly, and you can draw inferences from one example;

-exec: fixed writing;

rm -rf: forcefully delete files, including directories;

{} \; : Fixed writing method, a pair of curly brackets + space + \+;

2. Planned tasks:

If you think it is too troublesome to execute the statement manually every time, you can write this small statement into an executable shell script file, and then set up cron scheduling execution, so that the system can automatically clean up related files.

2.1 Create a shell:

touch /opt/soft/bin/auto-del-30-days-ago-log.sh
chmod +x auto-del-30-days-ago-log.sh

Create a new executable file auto-del-30-days-ago-log.sh and assign it executable permissions

2.2 Edit the shell script:

vi auto-del-30-days-ago-log.sh

Edit the auto-del-30-days-ago-log.sh file as follows:

#!/bin/sh
find /opt/soft/log/ -mtime +30 -name "*.log" -exec rm -rf {} \;

OK, save and exit (:wq).

2.3 Planned tasks:

#crontab -e

Add the auto-del-30-days-ago-log.sh execution script to the system scheduled tasks and execute it automatically at a certain time

enter:

10 0 * * * /opt/soft/log/auto-del-7-days-ago-log.sh >/dev/null 2>&1

The setting here is to execute the auto-del-7-days-ago-log.sh file at 0:10 am every day to perform data cleaning tasks.

After completing the above three steps, you will no longer have to worry about whether the hard disk space is full and it is time to clean up the log files. You will no longer receive alarm messages about insufficient hard disk space on the server. You can go read a book and drink coffee with peace of mind!

Each time you add a task, be sure to restart the crond service, otherwise it will not take effect

The code is as follows:

service crond restart

Creating Your First Shell Script

1. Write a script

a) Create a file using the touch command: touch my_script

b) Open the my_script file with the vim editor: vi my_script

c) Edit the my_script file with the vim editor. The content is as follows:

#!/bin/bash tells the shell what program to use to interpret the script #My first script
ls -l .*

2. Allow Shell to execute it

chmod 755 my_script

3. Execute the my_script script

./my_script

Summarize

The above is what I introduced to you about Linux automatic deletion of logs n days ago. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

You may also be interested in:
  • Linux uses scheduled tasks to clean up logs 45 days ago every week
  • Scheduled cutting of Tomcat logs in Linux and deleting log records older than a specified number of days
  • How to write a script to cut nginx logs every day under Linux system
  • Detailed explanation of the process of log timing polling under Linux
  • Scheduled cutting of Mongodb database logs in Linux and deleting log records older than a specified number of days
  • Code to delete logs 7 days ago under Linux (php+shell)
  • How to automatically delete archive log files under Linux
  • A simple method to implement Linux timed log deletion

<<:  MySQL 5.7.17 installation and configuration method graphic tutorial under win7

>>:  Two ways to declare private variables in JavaScript

Recommend

Detailed explanation of keywords and reserved words in MySQL 5.7

Preface The keywords of MySQL and Oracle are not ...

In-depth understanding of mathematical expressions in CSS calc()

The mathematical expression calc() is a function ...

Detailed explanation of MySQL combined index and leftmost matching principle

Preface I have seen many articles about the leftm...

Several common methods of CSS equal height layout

Equal height layout Refers to the layout of child...

Summary of the use of special operators in MySql

Preface There are 4 types of operators in MySQL, ...

CSS+HTML to realize the top navigation bar function

Implementation of navigation bar, fixed top navig...

How to operate json fields in MySQL

MySQL 5.7.8 introduced the json field. This type ...

JavaScript implements mouse drag to adjust div size

This article shares the specific code of JavaScri...

Installation and use of Ubuntu 18.04 Server version (picture and text)

1 System Installation Steps OS Version:1804 Image...

An article to understand the use of proxies in JavaScript

Table of contents What is an agent Basic knowledg...

How to use domestic image warehouse for Docker

1. Problem description Due to some reasons, the d...

How to implement Mysql switching data storage directory

How to implement Mysql switching data storage dir...

Detailed tutorial on compiling and installing python3.6 on linux

1. First go to the official website https://www.p...

Quickly solve the problem that the mysql57 service suddenly disappeared

one, G:\MySQL\MySQL Server 5.7\bin> mysqld --i...