服务器之家

服务器之家 > 正文

Linux下nginx生成日志自动切割的实现方法

时间:2022-02-20 17:49     来源/作者:神神的蜗牛

Linux下nginx生成日志自动切割的实现方法

1、编辑切割日志的 shell 程序,目录自定

?
1
#vi /data/nginx/cut_nginx_log.sh

输入代码:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash
             
# This script run at 00:00
             
function cutAccess()
{
  dir=$1
  newdir="${dir}/$(date -d "yesterday" +"%Y")/$(date -d "yesterday" +"%m")"
  suffix=$(date -d "yesterday" +"%Y%m%d")
  mkdir -p $newdir
  mv ${dir}/access.log ${newdir}/access.$suffix.log
}
             
cutAccess "/home/wwwlogs/www.yourdomain.com/"
cutAccess "/home/wwwlogs/www.yourdomain-1.com/"
cutAccess "/home/wwwlogs/www.yourdomain-2.com/"
           
# 重启 nginx
kill -HUP `cat /usr/local/nginx/logs/nginx.pid`

2、加入定时任务,每天0点自动切割

?
1
2
# crontab -e
0 0 * * * /bin/bash /data/nginx/cut_nginx_log.sh

3、nginx 日志格式

?
1
2
3
4
log_format access '$remote_addr - $remote_user [$time_local] "$request" '
      '$status $body_bytes_sent "$http_referer" '
      '"$http_user_agent" $http_x_forwarded_for';
access_log /home/wwwlogs/www.yourdomain.com/access.log access;

如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

原文链接:http://blog.csdn.net/zhouzme/article/details/18909185

标签:

相关文章

热门资讯

蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整 2021-08-24
2022年最旺的微信头像大全 微信头像2022年最新版图片
2022年最旺的微信头像大全 微信头像2022年最新版图片 2022-01-10
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
返回顶部