cron job issue..i hav read the basic threads already...


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting cron job issue..i hav read the basic threads already...
# 8  
Old 10-24-2009
1. There is no such thing as if you have crontab scheduled after long time.

Above is your misunderstanding.

2. Something else is the mistake....
Definitely environment, or your script permissions or some thing else ... when you check at 18:21 and scheduling it later .. i hope you are doing something .. which makes the script to execute.

The above is assumption only.

3. Check your /var/log/syslog to identify this problem. ( in debian )
Check the same in your OS.
# 9  
Old 10-24-2009
Quote:
Originally Posted by thegeek
1. There is no such thing as if you have crontab scheduled after long time.

Above is your misunderstanding.

2. Something else is the mistake....
Definitely environment, or your script permissions or some thing else ... when you check at 18:21 and scheduling it later .. i hope you are doing something .. which makes the script to execute.

The above is assumption only.

3. Check your /var/log/syslog to identify this problem. ( in debian )
Check the same in your OS.

m using CentOS and it is not having that syslog fiel, where else can i get that file ??

---------- Post updated at 03:33 PM ---------- Previous update was at 03:14 PM ----------

I hav checked the log

it was in var/log/cron
it shows that it is taking the script, then why the hell is it not working
i just changed the time to next 2 mins to execute, and it executed perfectly, now its time to execute is at 18:20 and m sure, it will not execute, n i really dont know why...
# 10  
Old 10-24-2009
Ok nice, you;ve located the log in the Cent OS.

But what about the error or execution log ?! Meaning, what did you found useful from there ? At both times -- during non-execution & execution ..
# 11  
Old 10-24-2009
Oct 24 14:01:01 gofenetre crond[11563]: (root) CMD (run-parts /etc/cron.hourly)
Oct 24 14:01:01 gofenetre crond[11564]: (root) CMD (/bin/backup36N)
Oct 24 15:01:01 gofenetre crond[11899]: (root) CMD (run-parts /etc/cron.hourly)
Oct 24 15:28:11 gofenetre crontab[12377]: (root) BEGIN EDIT (root)
Oct 24 15:29:45 gofenetre crontab[12377]: (root) REPLACE (root)
Oct 24 15:29:45 gofenetre crontab[12377]: (root) END EDIT (root)
Oct 24 15:30:01 gofenetre crond[8819]: (root) RELOAD (cron/root)
Oct 24 15:30:01 gofenetre crond[12408]: (root) CMD (/bin/backup36N)


this is last entry for the cron job set
it shows that the job is taking the script at 14:01 hrs
Later i made this modification to my cron job

30 09 * * 6 /bin/backup36M
30 15 * * 6 /bin/backup36N
20 18 * * 6 /bin/backup36E

and the job executed well at 15:30 hrs, giving me the backup of sepcified time, if there wud b any issue of environment variable or anything else, then it shud not hav been executed...
# 12  
Old 10-24-2009
What we need to see is what happened around the time that the jobs should have executed and didn't. I suggests that you set up a crontab. When it fails, post the part of the log that covers 1 hour before the failure time to the end of the file.
# 13  
Old 10-24-2009
Oct 24 18:01:01 gofenetre crond[15482]: (root) CMD (run-parts /etc/cron.hourly)
Oct 24 18:20:01 gofenetre crond[15865]: (root) CMD (/bin/backup36E)


thats the last entry to cron log, and again, the script didnt work...Smilie
# 14  
Old 10-24-2009
Did you set up the crontab with the variables MAILTO, HOME, and SHELL? Where there any mail messages?

Cron is executing the scripts. But there may be a problem related to the expectations of your scripts.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Cron Job Issue

My Friends I want to run a script only at the end of month.but i tried below cront entry its not working. pls help 0 9 28-31 ] && /usr/bin/bash /u01/app/scripts/CX-eom.shOs Details: AIX 7.1.0.0 Please use CODE tags as required by forum rules! (5 Replies)
Discussion started by: ded325
5 Replies

2. UNIX for Beginners Questions & Answers

Cron Job Issue

Dear Members Seeking you help on my issue. this script need to run on every end of month.i configured as below. but it runs everyday. why 0 9 28-31 * * ] && /usr/bin/bash /u01///scripts/e.sh (3 Replies)
Discussion started by: ded325
3 Replies

3. Shell Programming and Scripting

Cron job - Need to run Cron every quarter at particular time

Hi, 1) If some job supposed to run on 1st of every month at 7 AM In cron job when we have a blackout on the 1st ( i.e when 1st falls on a sunday ) how can we make the job run the next business day? 2) How can we run a job on 25th of every quarter 7 AM(jan,apr,jul,oct) And if 25th... (5 Replies)
Discussion started by: System Admin 77
5 Replies

4. Shell Programming and Scripting

Commented cron job -- cron monitoring

Hi I have a requirement to write a shell script,that will check the all commented job in cron job.Please help !! (2 Replies)
Discussion started by: netdbaind
2 Replies

5. Shell Programming and Scripting

Issue with svn update using cron job.

I want to update svn code using a nightly job using cron, i have created a job in cron as, 30 17-19 * * 1-5 /home/saprab/svnUpdate.sh <branch> <svnusername> <svnpassword> >> <logfile> 2>&1 svnUpdate.sh : =============== #!/bin/bash branch=$1 svnuser=$2 svnpass=$3 cd ${branch}... (2 Replies)
Discussion started by: bhavesh.sapra
2 Replies

6. Shell Programming and Scripting

cron job issue

Hi , I want to run script every minute so i added . cron entry as below usning crontab -e looks like */1 * * * * sh /home/sai/http_sim/http_start.sh but cron job is not running ? any way to start the cron or something ? Thanks, Raghavendra (2 Replies)
Discussion started by: raghavendra.nsn
2 Replies

7. UNIX for Dummies Questions & Answers

Cron job issue

This is regarding my cron job. My cron entry 30 * * * 1-5,0 /work1/informix/sample/script1.sh 31 * * * 1-5,0 /work1/informix/sample/script2.sh Every 30 mins script1.sh is run. (mon thru friday and sunday) Every 30 mins script2.sh is run. (mon thru friday and sunday) This is based on the... (3 Replies)
Discussion started by: kenkanya
3 Replies

8. Solaris

cron job starts new cron proccess

I run cron in solaris 10 zone. One cron job which syncing files to nfs mounted on container, creates after finishing another cron proccess(/usr/sbin/cron), and after 100 existing cron proccesses next cron job will not start. It's too weird for me, I'm not able to solve this problem. Theoretically... (3 Replies)
Discussion started by: ron76
3 Replies

9. Shell Programming and Scripting

Issue with cron job -Please help

Hi , I have an issue with cron job that i have scheduled today. The problem is that when i run this script in command prompt it work good giving me the desired results but if i schedule this to run using cron job it failes giving a "syntax error in line 11 :$"..... Can anyone look into this and... (6 Replies)
Discussion started by: bsandeep_80
6 Replies

10. Shell Programming and Scripting

Issue with cron job

Hi, I have a script which I am able to run from command line. When I put this in cron, it fails and gives the following message: ld.so.1: /d00/documentum/product/5.2.5/bin/dmbasic: fatal: libdmcl40.so: open failed: No such file or directory The ksh script looks like this: # Set this... (1 Reply)
Discussion started by: nattynatty
1 Replies
Login or Register to Ask a Question