日志自动切分

vim /etc/logrotate.d/nginx

1
2
3
4
5
6
7
8
9
10
11
12
13
14
/data/nginx/log/*.log {
su root root
daily
rotate 5
missingok
notifempty
sharedscripts
dateext
postrotate
if [ -f /var/run/nginx.pid ]; then
kill -USR1 `cat /var/run/nginx.pid`
fi
endscript
}

手动执行

1
/usr/sbin/logrotate -f /etc/logrotate.d/nginx

×

纯属好玩

扫码支持
扫码打赏,你说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

文章目录
,