Crontab not working with the hour configuration


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Crontab not working with the hour configuration
# 1  
Old 08-02-2012
Crontab not working with the hour configuration

Hi,

When I set the crontab to run every minute, every hour, it works fine.

Code:
* * * * * env > /tmp/env.output

However I want to run it every day at 8:00 AM and it does not run.

Code:
* 8 * * * env > /tmp/env.output

I ran the 'date' command which says it's 8AM PST and also the 'TZ' command and it's also 8PST.

Thank you for you help.

Last edited by methyl; 08-03-2012 at 01:47 AM..
# 2  
Old 08-02-2012
Have you tried:

Code:
0 8 * * * env > /tmp/env.output

This User Gave Thanks to in2nix4life For This Post:
# 3  
Old 08-02-2012
Good catch. With * in the minutes, it would run 8:00, 8:01, 8:02, ...
# 4  
Old 08-02-2012
Hi,

Also worth noting here that "env" might not be the best command to run, as there may not be one for the crond.

Regards

Dave
# 5  
Old 08-02-2012
We already know she has it, however.
# 6  
Old 08-03-2012
As a test, try running the date command in your once-a-minute cron to see what timezone cron is running in.
Depends how the server was built. Some people set the server clock to UTC and adjust the client sessions.
Please get used to mentioning what Operating System and version you have and what Shell you think you are running (could be diferent from cron).
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX and Linux Applications

Mutt Configuration for Yahoo! (Working sol -)

First configure the directory as so-- mkdir -p ~/.mutt/cache/headers mkdir ~/.mutt/cache/bodies touch ~/.mutt/certificates Then create the config file -- touch ~/.mutt/muttrc Now, edit the file sudo nano ~/.mutt/muttrc Thanks to iandexter/github for the script:- # Gmail... (1 Reply)
Discussion started by: puneet_bapna
1 Replies

2. UNIX for Dummies Questions & Answers

Modify hour crontab UNIX

Hello, I wish to modify the day of launch of a "batch" in the crontab on several servers with awk or sed. Can you help me ? Beforehand thank you 00 18 * * 1 /box/Pra/bin/systeme_reverse.ksh -s >/dev/null 2>&1 (7 Replies)
Discussion started by: khalidou13
7 Replies

3. Shell Programming and Scripting

Crontab error - bad hour

Hi All, While setting the crontab i am getting the below error, "/tmp/crontab.XXXXwKymEc" 156L, 15621C written crontab: installing new crontab "/tmp/crontab.XXXXwKymEc":74: bad hour Please help. Thanks (2 Replies)
Discussion started by: nag_sathi
2 Replies

4. Shell Programming and Scripting

E-mail based on crontab hour

I have a cron: 0 5,11,17,23 * * * /home/oracle/scripts/sysize.ksh This cron will trigger cat dbsz.txt | mail -s "$TODAY: PROD DB Size" $RECIPIENTS I don't want to get the e-mail notice 4 times a day. Can I have just one e-mail triggered at 11 AM? Please advise. Thank you (3 Replies)
Discussion started by: Daniel Gate
3 Replies

5. Solaris

Solaris 9 Zone : Date command in crontab shows delayed(One Hour) output

SOLARIS 9 Zone : date command in crontab shows delayed(One Hour) output Hi folks, the date command shows the correct date and time, How ever, if the date command executed through crontab in any form of scrip the output shows as one hour delayed, similar to date -u.. Can some one help in... (12 Replies)
Discussion started by: judi
12 Replies

6. AIX

crontab 1 hour off from current time

This is a new one on me. We upgraded a system from AIX 5.3 TL 7 to 6.1 TL 7 yesterday. The app people notified us that their cron jobs weren't running at the right time. So I made a test cron entry and here's what I've found: # crontab -l * * * * * /usr/bin/date > /tmp/test.log 2>&1 # cat... (2 Replies)
Discussion started by: homeyjoe
2 Replies

7. Shell Programming and Scripting

To Run a job every hour without using crontab

Hi, Can anyone help me in finding how to run a specific job every hour without using crontab. Say for example i need to run a command ps -aux in the starting of every hour.. (3 Replies)
Discussion started by: glv
3 Replies

8. Linux

How to save crontab configuration when using SSH?

Hi, I'm trying to save a crontab configuration using SSH, acessing a Linux machine from a Windows desktop. So, in the prompt I type "crontab -e", to edit crontab, and a window is opened. But after writing the changes, I press Save button but it seems not working, because when... (1 Reply)
Discussion started by: Roger75
1 Replies

9. Shell Programming and Scripting

Sed or Awk for modify hour in a crontab AIX

Hi, I want to modifiy the hour in the crontab AIX 5.3 for this line: Input: 00 22 * * * /outillage/script_exploit/bin/SavOffline.ksh > /dev/null 2>&1 Output: 30 20 * * * /outillage/script_exploit/bin/SavOffline.ksh > /dev/null 2>&1 With the awk or sed function through a ssh -q... (1 Reply)
Discussion started by: khalidou13
1 Replies

10. Shell Programming and Scripting

Crontab for every minute or every hour

How to set crontab for every minute or every hour (1 Reply)
Discussion started by: kaushik02018
1 Replies
Login or Register to Ask a Question