WINDOWS下对NIGNX日志文件进行限制

WINDOWS下对NIGNX日志文件进行限制

  首先接到这个任务,发现nginx的日志限制更多的都是在Linux下做的,找了半天,也没找到能直接通过nginx.conf更改体现到日志限制上的。

  最后决定直接通过bat脚本,来对nginx的日志进行分割和删除。

  至于需要谁来执行bat脚本,大家可以根据自己的业务需求来操作,比如:

  1.通过系统的任务计划程序

  2.通过java程序系统定时器

  先来说第一种:

       

  

 

   

 

 通过创建计划任务,然后选中要执行的bat脚本,设置执行周期,就可以搞定。

  第二种:通过服务器内的java程序,定时器调用

 1 package com.gosun.check.config.task;
 2 
 3 import lombok.extern.slf4j.Slf4j;
 4 import org.springframework.scheduling.annotation.Scheduled;
 5 import org.springframework.stereotype.Component;
 6 
 7 import java.io.BufferedReader;
 8 import java.io.File;
 9 import java.io.InputStream;
10 import java.io.InputStreamReader;
11 
12 @Slf4j
13 @Component
14 public class PartitionDelLogTask {
15 
16     @Scheduled(cron = "0 1 0 * * ?") //每天23点执行
17     public void delNginxLogTask(){
18         log.info("===开始执行定时任务===");
19         String relativelyPath=System.getProperty("user.dir");
20         String batPath = relativelyPath+"\fenge.bat";
21         try {
22             File batFile = new File(batPath);
23             boolean batFileExist = batFile.exists();
24             log.info(">>>> 是否找到bat:{};文件位置:{}",batFileExist,batPath);
25             if (batFileExist) {
26                 callCmd(batPath);
27             }
28             log.info(">>>> bat文件执行成功");
29         } catch (Exception e) {
30             log.error(">>>> bat文件执行失败:{}", e.getMessage());
31         }
32     }
33 
34     private static void  callCmd(String locationCmd){
35         StringBuilder sb = new StringBuilder();
36         try {
37             Process child = Runtime.getRuntime().exec(locationCmd);
38             InputStream in = child.getInputStream();
39             BufferedReader bufferedReader=new BufferedReader(new InputStreamReader(in));
40             String line;
41             while((line=bufferedReader.readLine())!=null)
42             {
43                 sb.append(line + "
");
44             }
45             in.close();
46             try {
47                 child.waitFor();
48             } catch (InterruptedException e) {
49                 log.info("------异常---------{}",e.getMessage());
50             }
51             System.out.println("sb:" + sb.toString());
52             log.info("------执行完成---------");
53         } catch (Exception e) {
54             log.info(e.getMessage());
55         }
56     }
57 }
hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » WINDOWS下对NIGNX日志文件进行限制