Results 1 to 5 of 5
I modified my crontab file to this:
5 20 * * * /TEMP/develop/test1.job
However system didn't start that test1.job task at 20.05. Is there something wrong with my crontabfile? The ...
- 10-18-2007 #1Just Joined!
- Join Date
- Oct 2007
- Posts
- 2
Scheduling tasks
I modified my crontab file to this:
5 20 * * * /TEMP/develop/test1.job
However system didn't start that test1.job task at 20.05. Is there something wrong with my crontabfile? The test1.job worked well when I tried it in /TEMP/develop/ directory and wrote ./test1.job
And the cron -process was also running (which is default?!?). I checked that with ps -A.
Some help needed with scheduling tasks.
- 10-18-2007 #2
After you edit the file try restarting crond so it re-reads the file.
- 10-19-2007 #3Just Joined!
- Join Date
- Oct 2007
- Posts
- 2
How I re-start crond or cron? System doesn't let me kill the process.
- 10-19-2007 #4Just Joined!
- Join Date
- Oct 2007
- Posts
- 37
Try HUPing it:
Find the PID and run:
kill -HUP PID
or
kill -1 PID
PID can usually be found in /var/run/ or using ps aux | grep cron
- 10-19-2007 #5
As root;
service crond restart


Reply With Quote