Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to back up and delete nginx logs regularly

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly introduces how to regularly back up and delete nginx logs, which has a certain reference value, interested friends can refer to, I hope you can learn a lot after reading this article, let the editor take you to understand it.

Once the nginx log feature is enabled, nginx will generate log files of a certain size every day. If the system runs stably and there is no problem, then the log basically will not be checked. However, if these logs are not cleaned in time and accumulated day by day, it will be scary to occupy the disk space of the server. To solve this problem, use the shell script to back up and delete the nginx log files regularly, only for a period of time.

Figure 1:

#! / bin/bash#auth:lzq#desc: back up the current log by date and regenerate the next day's log file # date:2016-09-18DATE = `date +% Y% m% d`NGINX _ PID= `cat / var/run/ nginx.pid` # exit if ["$?"! = 0] then exit 1 if the current Nginx is not running The path where fi#nginx logs are located: LOG_PATH='/usr/local/nginx/logs/'LOG_NAME='access.log'mv ${LOG_PATH} ${LOG_NAME} ${LOG_PATH} ${LOG_NAME} $DATE# delete the old backup file function deloldbak () {olddate= `date + "% Y%m%d"-d "- $1 day" `if [- e "${LOG_PATH} ${LOG_NAME} $olddate"] Then rm-f ${LOG_PATH} ${LOG_NAME} $olddate echo "${LOG_PATH} ${LOG_NAME} $olddate del OK" fi} # reload nginx configuration Regenerate the nginx log file kill-USR1 $NGINX_PIDif ["$?" = = 0] then deloldbak 7 exit 0 Fi thank you for reading this article carefully. I hope the article "how to back up and delete nginx logs regularly" shared by the editor will be helpful to you. At the same time, I also hope you will support us and follow the industry information channel. More related knowledge is waiting for you to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report