Ich verstehe den Satz nicht ganz. Vieleicht etwas genauer?Toffel said:meine Logs werden nicht mehr täglich als gz gespeichert, der schreibt das weiter in die messages, woran könnte das liegen?
Schon in Richtung logrotate was unternommen?Toffel said:Nacht packt er das in neue Datei, zum Beispiel messages20060215.gz, das macht er aber nicht mehr
Huschi said:Schon in Richtung logrotate was unternommen?
huschi.
logratate ist, wie der Name schon sagt, zuständig für die Rotation der LogfilesToffel said:aber was meinst du mit logtotate, was soll ich da machen?
0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48,51,54,57 * * * * /usr/local/visas/server/visas-event.sh
40 23 * * * /usr/local/visas/etc/statistik/report.sh > /dev/null 2>&1
0 3 * * * /usr/local/visas/server/gettraffic.sh > /dev/null
* * * * * killall -HUP authdaemond.plain > /dev/null
55 16 * * * /usr/sbin/ntpdate ntp1.rz-ip.net
Huschi said:Hast Du denn wenigstens die logrotate-Config-Files?
(/etc/logrotate.conf /etc/logrotate.d/...)
huschi.
# 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
# uncomment these to switch compression to bzip2
#compresscmd /usr/bin/bzip2
#uncompresscmd /usr/bin/bunzip2
# 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.
#!/bin/sh
/usr/sbin/logrotate /etc/logrotate.conf
EXITVALUE=$?
if [ $EXITVALUE != 0 ]; then
/bin/logger -t logrotate "ALERT exited abnormally with [$EXITVALUE]"
fi
exit 0
#!/bin/sh
test -x /usr/sbin/logrotate || exit 0
/usr/sbin/logrotate /etc/logrotate.conf
Was meinst du damit?huschi said:per "chmod +x /etc/cron.daily/logrotate" ausführbar gemacht sein sollte.
Wenn ich mal deine Default-Einstellung auswerte, dann steht da, dass er einmal in der Woche die Logs rotieren soll, das er ein neues File anlegen soll und das er nicht komprimieren soll (weil "compress" auskommentiert ist)Toffel said:Code:# 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 # uncomment these to switch compression to bzip2 #compresscmd /usr/bin/bzip2 #uncompresscmd /usr/bin/bunzip2 # 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.
daseddy said:einmal in der Woche die Logs rotieren soll
Was willst Du auswerten?Toffel said:Da hätte ich noch ne frage, gibt es da vielleicht nettes grafisches auswertungs tool für linux?
Nee wenn dann "daily"Toffel said:Einfach "day"?
which logrotate
We use essential cookies to make this site work, and optional cookies to enhance your experience.