marcoweb
Registered User
System: Ubuntu 6.06 und Plesk 8.4.0
Hallo, habe Probleme mit Cron bzw. Anacron.
Beides ist installiert und wird auch ausgeführt, in der anacrontab hab ich die entsprechenden Einträge auch gefunden warum die entsprechenden Skripte in den cron.ordnern (cron.daily, cron.weekly usw.) so nicht ausgeführt werden weis ich im Moment noch nicht. Wenn ich die Lösung zu den Problemen gefunden habe werde ich es hier posten bin aber für Tips gerne zu haben. Vielleicht hat ja jemand ein ähnliches Problem. Aufgefallen ist es mir, da Plesk den Traffic nicht berechnet hat und logrotation bzw. syslog nicht ausgeführt wurden.
Da werd ich noch ein bischen suchen müssen aber DANKE schonmal für die Tips.
EDIT:
Hab nun mal die syslog studiert aus der letzten nacht, daraus konnte ich erkennen, das cron alles in /etc/cron.d/ regelmäßig ausführt. Was in den anderen cron.ordnern ausgeführt werden soll passiert weder durch anacron noch cron. Meine Crontab sieht zur Zeit so aus meiner Meinung nach fehlerfrei:
und hier die anacrontab:
Hallo, habe Probleme mit Cron bzw. Anacron.
Beides ist installiert und wird auch ausgeführt, in der anacrontab hab ich die entsprechenden Einträge auch gefunden warum die entsprechenden Skripte in den cron.ordnern (cron.daily, cron.weekly usw.) so nicht ausgeführt werden weis ich im Moment noch nicht. Wenn ich die Lösung zu den Problemen gefunden habe werde ich es hier posten bin aber für Tips gerne zu haben. Vielleicht hat ja jemand ein ähnliches Problem. Aufgefallen ist es mir, da Plesk den Traffic nicht berechnet hat und logrotation bzw. syslog nicht ausgeführt wurden.
Da werd ich noch ein bischen suchen müssen aber DANKE schonmal für die Tips.
EDIT:
Hab nun mal die syslog studiert aus der letzten nacht, daraus konnte ich erkennen, das cron alles in /etc/cron.d/ regelmäßig ausführt. Was in den anderen cron.ordnern ausgeführt werden soll passiert weder durch anacron noch cron. Meine Crontab sieht zur Zeit so aus meiner Meinung nach fehlerfrei:
Code:
# /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.
# This file also has a username field, that none of the other crontabs do.
SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
################################################################DAS IST STANDARD
# m h dom mon dow user command
50 * * * * root run-parts --report /etc/cron.hourly
1 3 * * * root test -x /usr/sbin/anacron || run-parts --report /etc/cron.daily
8 0 * * 7 root test -x /usr/sbin/anacron || run-parts --report /etc/cron.weekly
3 3 1 * * root test -x /usr/sbin/anacron || run-parts --report /etc/cron.monthly
################################################################AB HIER HAB ICH ES GEÄNDERT
# cron-hourly
#
# cron-daily
5 1 * * * root /etc/cron.daily/50plesk-daily
10 1 * * * root /etc/cron.daily/logrotate
12 1 * * * root /etc/cron.daily/netkit-inetd
15 1 * * * root /etc/cron.daily/sysklogd
18 1 * * * root /etc/cron.daily/tomcat5
20 1 * * * root /etc/cron.daily/webalizer
#
# cron-weekly
1 0 * * 7 root /etc/cron.weekly/50plesk-weekly
#
# cron-monthly
10 3 1 * * root /etc/cron.monthly/50plesk-monthly
#
Code:
# /etc/anacrontab: configuration file for anacron
# See anacron(8) and anacrontab(5) for details.
SHELL=/bin/sh
PATH=/sbin:/bin:/usr/sbin:/usr/bin
# These replace cron's entries
1 5 cron.daily nice run-parts --report /etc/cron.daily
7 10 cron.weekly nice run-parts --report /etc/cron.weekly
@monthly 15 cron.monthly nice run-parts --report /etc/cron.monthly
Last edited by a moderator: