我的伺服器中有一個Talend Data Stewardship
應用程序,我想輪換catalina.out
日誌檔案。
因此,我指的是https://dzone.com/articles/how-rotate-tomcat-catalinaout,並在裡面建立一個名為tomcat的文件/etc/logrotate.d
,內容如下:
/app/talend/801/tds/apache-tomcat/logs/catalina.out {
copytruncate
daily
rotate 700
compress
missingok
size 1M
}
第二天,我看到我的日誌檔案仍然存在並且沒有旋轉,即使檔案大小大於1M。
但是,如果我透過執行以下命令手動觸發,那麼它將旋轉:
/usr/sbin/logrotate /etc/logrotate.conf
我可以知道這正常嗎?我可以讓它每天自動旋轉嗎?
以下為 上的內容logrotate.conf
:
# see "man logrotate" for details
# rotate log files weekly
weekly
# keep 4 weeks worth of backlogs
rotate 4
# create new (empty) log files after rotating old ones
create
# use date as a suffix of the rotated file
dateext
# uncomment this if you want your log files compressed
#compress
# RPM packages drop log rotation information into this directory
include /etc/logrotate.d
# system-specific logs may be also be configured here.
它已經包含/etc/logrotate.d
資料夾,所以它應該讀取我的tomcat
文件?
以下是我的catalina.out
日誌檔案權限:
[root@MYUTVLXRORNT01 logs]# ls -lrt catalina.out
-rwxr-xr-x. 1 talenduser talendgroup 2020934 Feb 29 10:06 catalina.out
我相信權限 755 應該夠了?
而catalina.out
使用者和群組是talenduser:talendgroup
,這應該沒有影響吧?