WINDOWS下對NIGNX日誌檔案進行限制

鐵鐵的收集箱發表於2022-11-25

  首先接到這個任務,發現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 + "\n");
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 }

則bat指令碼:

 1 @shift
 2 
 3 ::設定nginx安裝檔案路徑和當天時間變數
 4 @echo off
 5 set nginx_dir=D:\nginx
 6 set dir=%nginx_dir%\logs\cut_log
 7 set log=%nginx_dir%\logs\access.log
 8 set errorlog=%nginx_dir%\logs\error.log
 9 set mqttlog=%nginx_dir%\logs\access_mqtt.log
10 set today=%date:~0,4%-%date:~5,2%-%date:~8,2%
11 set nginxStart = D:\nginx\nginx.exe
12 
13 ::判斷nginx的cut_log目錄
14 :check_dir
15 @echo off
16 if exist %dir% (
17     goto main
18 ) else (
19     md "%dir%"
20     goto main
21 )
22 
23 ::建立相關目錄和對nginx日誌進行切割
24 :main
25 @echo off
26 ::結束nginx程式
27 taskkill /F /IM nginx.exe > nul
28 move "%log%" "%dir%\access-%today%.log" > nul
29 move "%errorlog%" "%dir%\error-%today%.log" > nul
30 
31 if exist %mqttlog% (
32     move "%mqttlog%" "%dir%\access_mqtt-%today%.log" > nul
33 ) else (
34     @echo "no mqttLog"
35 )
36 
37 ::刪除指定天數之前的檔案
38 forfiles /p "d:\nginx\logs\cut_log" /s /m *.* /d -7 /c "cmd /c del @path"
39 ::刪除檔案大於10M的
40 for /r d:\nginx\logs\cut_log %%i in (*.log) do @(if %%~zi gtr 10240000 del "%%i" /f)
41 set dirr=/d d:/nginx
42 echo "%dirr%"
43 echo. start Nginx......
44 cd "%dirr%"
45 IF EXIST "%dirr%nginx.exe" (
46         echo "start '' nginx.exe"
47         start  nginx.exe
48     )
49 echo.OK

bat指令碼思路是:

  先停止nginx程式 --> 把access.log和error.log剪下到cut_log資料夾中 --> 根據檔案建立時間刪除7天前的檔案 --> 刪除檔案大於10M的 --> 啟動nginx程式

  在這裡有個小提醒,在切換磁碟機代號到nginx資料夾,啟動Nginx的時候,在本地IDEA跑程式測試,是沒問題,但把程式放到伺服器上,就執行不完全,也沒報錯,透過排查,找到是指令碼的錯誤,然後才找到cd d:,實際並沒有切換到d:,最後換成的 cd /d d:,這樣才沒問題,或者直接d: ,太久沒寫windows的指令碼了,都有點忘了,哈哈哈!

 

相關文章