script in cron didnt run


 
Thread Tools Search this Thread
Operating Systems HP-UX script in cron didnt run
# 1  
Old 12-15-2011
script in cron didnt run

Hi,

I have script in the cron which run at predefined time everyday.
If the script fails then we get the mail and a log is created.

But last night the script didnt run. If the script is even started it creates log so it seems the script never ran. It has never happened before.

Th machine has uptime of 119 days so there was no maintenance on machine.

Does anyone knows where we can check cron logs ..if there is one where its recorded if cron scripts have run or not ???

Thanks in advance
Shipra
# 2  
Old 12-15-2011
Hi,

begin looking in /var/log/cron

tell us what you find there

see ya
fra
This User Gave Thanks to frappa For This Post:
# 3  
Old 12-15-2011
Thanks i found the log under /var/adm/cron/log ..i think it should be same


! c queue max run limit reached Thu Dec 15 00:01:00 CST 2011
! rescheduling a cron job Thu Dec 15 00:01:00 CST 2011


Is this error ..this is what i see ... after 13th dec ...

And if its error how to resolve

---------- Post updated at 06:55 AM ---------- Previous update was at 06:27 AM ----------

it seems some user had cron script which was not closing I checked the ppid of cron for processs ... got the process killed and now my cron is workingggg



Thanks a bunch for teh help
# 4  
Old 12-15-2011
Just killing jobs will not solve the issue, you just save time and HP-UX is not PC stuff, some production boxes need maintenance scheduling planified a long time in advance and you have to give very good reason to reboot... (the HP I take care have an uptime if you take off the planned maintenance OR issue ( HW failure...) of above 99.9% and they are not in HA... The planned downtime is about 2 hours per year for all the boxes...).
What I mean is if you haven't found the culprit, it will happen again...
when you looked at PID of cron process, how many processes were running under the same PPID ?
100?
Why are they still running is what you have to solve! cron is waiting for the end of some child process, having cron jobs hanging is not very professional...Some other things you could look at for investigation: Did you have a look at your /var/adm/cron/queuedefs file. How many crontabs files do you have? (in /var/spool/cron/crontabs...)

Last edited by vbe; 12-15-2011 at 10:16 AM.. Reason: typo
# 5  
Old 12-15-2011
vbe,

yeh what i meant was we found a script which was the main culprit ..and we are reviewing the script ..it was not closing as a result there were many scripts attached to cron and cron queue got filled ...so now we killed those old opened session and are reviewing that script and meantime other scripts are running fine.
# 6  
Old 12-15-2011
You could change the queues values, but you need a good reason to go that way...

I've seen cases like yours when calling in batch some script written for interactive mode ( press Enter to continue...). Good luck!
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Run script no more than twice daily WITHOUT cron

Can I run a script no more than twice a day without using cron? Maybe create a file when script is first run and check its date? (7 Replies)
Discussion started by: drew77
7 Replies

2. UNIX for Advanced & Expert Users

Script run by cron gives no output

Hi All, I have a script which checks the status of HP Smart Array & then emails me the output. The script run fine when executed manually but I receive no output when configured in a cron job. The script is below: hpacucli ctrl slot=3 show config | mail -s "ARRAY STATUS-`date`"... (6 Replies)
Discussion started by: coolatt
6 Replies

3. Shell Programming and Scripting

Need help to run a script on cron

I need someone to help me out to upload script on host but I have problem can anyone help me out ? (2 Replies)
Discussion started by: spit
2 Replies

4. Shell Programming and Scripting

how to run script? call other script? su to another user? make a cron?

Good morning. I am searching for "how-to"'s for some particular questions: 1. How to write a script in HP-UX 11. 2. How to schedule a script. 3. How to "call" scripts from the original script. 4. How to su to another user from within a script. This is the basics of what the... (15 Replies)
Discussion started by: instant000
15 Replies

5. Shell Programming and Scripting

Script behaves different when run from cron vs. manually

Hey all, Just wanted to get some input on a script I am using to import files into a MySQL database. The process is pretty simple: my main server exports these files and FTPs them. I have a script that FTPs them to the machine running that runs this script. The FTP script runs without issue... (2 Replies)
Discussion started by: billtwild
2 Replies

6. UNIX for Advanced & Expert Users

Need help with a script run by a cron job.

Hi, new to this forum and not sure if this is the right place to post. I'm new to cron jobs and scripts, and I need some help with a script to be used with a cron job. I already have a bot set up at a certain website address and need a script that the cron job will load every day that tells it to... (1 Reply)
Discussion started by: klawless
1 Replies

7. Shell Programming and Scripting

Help with script - run by cron

Hello, I have a shell script that runs every minute to process incoming files delivered externally via SFTP to a directory. Basically the script works and processes the files however I get an error when a new file is delivered into the directory. Please see my script below. A new file is... (2 Replies)
Discussion started by: richo king
2 Replies

8. UNIX for Advanced & Expert Users

reg no of instances of a script run using cron

I have the below code in a file called test.ksh and it is scheduled using cron forevery 5 min. when i see the cron out file for every 5 min it showing the no of process running are 2. same thing when i implement in another script which contains other code along with the below code , it showing as... (1 Reply)
Discussion started by: kamesh83
1 Replies

9. Shell Programming and Scripting

Script to run 100jobs at a time from cron

here is my requirement. When ever the customer visitis the sore we want to look his information by his phone no. From the database side we are putting all the information in session pools. for example if we have 500 stores and at any second one customer is at the counter we can get atlease 500... (2 Replies)
Discussion started by: skneeli
2 Replies

10. Shell Programming and Scripting

Can run script Manually, but not through Cron?

Hi all, I have a main script (called OracleCleanup) that runs some sql queries. that runs off a wrapper script which contains the sources for the login information and and JOB_HOME (the script is below). When I schedule this job in the cron the log says that it cannot open my list file, which... (4 Replies)
Discussion started by: MadHatter
4 Replies
Login or Register to Ask a Question