en prenant le cas d'apache, c'est effectué lorsque le processus père (en root) se prend un signal HUP, c'est géré par logrotate, voici le contenu de mon /etc/logrotate.d/httpd :
/var/log/httpd/*log {
missingok
notifempty
sharedscripts
postrotate
/bin/kill -HUP `cat /var/run/httpd.pid 2>/dev/null` 2> /dev/null || true
endscript
}
|
logrotate est lui même appelé par une tâche cron (daily généralement) :
/etc/cron.daily/logrotate :
#!/bin/sh
/usr/sbin/logrotate /etc/logrotate.conf
|
le fichier logrotate.conf inclu le contenu du répertoire /etc/logrotate.d :
# 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
# uncomment this if you want your log files compressed
#compress
# RPM packages drop log rotation information into this directory
include /etc/logrotate.d
# no packages own wtmp -- we'll rotate them here
/var/log/wtmp {
monthly
create 0664 root utmp
rotate 1
}
# system-specific logs may be also be configured here.
|
voilà, ça doit pouvoir t'aider à voir comment ça se passe chez toi