Ich benutze einen Cron-Job, um offlineimap
alle 2 Minuten anzurufen :
*/2 * * * * /usr/bin/offlineimap > ~/Maildir/offlineimap.log 2>&1
Ich musste den Cron-Job beenden, um ein Problem zu beheben. Wie kann ich dann den Cron-Job neu starten (ohne neu zu starten)? Ich habe diese 'Lösung' online gefunden:
mylogin@myhost:~$ sudo /etc/init.d/cron restart
Rather than invoking init scripts through /etc/init.d, use the service(8)
utility, e.g. service cron restart
Since the script you are attempting to invoke has been converted to an
Upstart job, you may also use the stop(8) and then start(8) utilities,
e.g. stop cron ; start cron. The restart(8) utility is also available.
cron stop/waiting
cron start/running, process 26958
Bei der Verwendung ps -ef | grep ...
sehe ich den Job jedoch nicht ... Was ist los?
crontab
, kommentieren Sie diesen Job aus, führen Sie Ihre Wartung durch und kommentieren Sie ihn dann aus ...