로그 회전이 구성되어 있으며 강제로 업데이트하면 원하는 방식으로 작동합니다. 아래 구성에서 볼 수 있듯이 파일 크기 조건을 사용하고 있는데 이 조건을 얼마나 자주 확인하는지 알고 싶습니다. 내 파일 크기가 3GB에 도달하면 회전이 즉시 발생합니까, 아니면 다음 시간 간격(예:...)까지 3GB를 유지합니까?
최대한 순간적으로 접근하고 싶습니다 :)
----@----------:/var/log/upstart# vim /etc/logrotate.d/upstart
/var/log/upstart/*-server.log.* {
size 3G
missingok
rotate 5
compress
notifempty
nocreate
}
root@osshonisyslog1s:/var/log/upstart# vim /etc/crontab
# /etc/crontab: system-wide crontab
# Unlike any other crontab you don't have to run the `crontab'
# command to install the new version when you edit this file
# and files in /etc/cron.d. These files also have username fields,
# that none of the other crontabs do.
SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
# m h dom mon dow user command
17 * * * * root cd / && run-parts --report /etc/cron.hourly
25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
47 6 * * 7 root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
52 6 1 * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
*/5 * * * * /etc/cron.daily/logrotate
답변1
내가 이해한 바로는 스크립트가 파일이 3G를 초과한다는 것을 발견하면 구성된 대로 파일을 계속 압축하고 회전합니다.