Crontab not working


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Crontab not working
# 1  
Old 06-06-2015
Crontab not working

Hi All,

I have a script with deatils as :

Code:
[muser@server scripts]$ ls -ld catch_logs.sh 
-rwx--x--x 1 muser muser 752 Jun  5 22:36 catch_logs.sh

User crontab looks likes:

Code:
[muser@server scripts]$ crontab -l
SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin

* * * * * /opt/scripts/catch_logs.sh

Now if I run this script manually, I do get an email(configured inside script). But once this script runs via cron, no email is received.

I do not have admin rights on the system so I cannot view any /var/log/* .

Any idea why the script in not sending out email when being triggered by cron ?
# 2  
Old 06-06-2015
For the same reasons that dozens of other threads have asked about...
The environment used by cron (and passed to programs it runs), is not you login shell's environment.

You either need to have your script set up the correct environment or you need to use absolute paths to all of the files your script uses (executables, input files, and output files).

Obviously, if you don't show us your script, we can't help you fix it!
This User Gave Thanks to Don Cragun For This Post:
# 3  
Old 06-06-2015
Facebook

The script is:

It basically is monitoring a certain log file for a certain type of error. If there is a new error, it sends an email to email addresses specified in email.users .

If no new error has occurred, do nothing.



Code:
#!/bin/bash

LIVE_FILE=/opt/adapt/log/server.log
TMP_FILE=/opt/scripts/server.log.tmp
TMP=/opt/scripts/server.tmp

grep "ephemeral" $LIVE_FILE > $TMP

if diff  $TMP $TMP_FILE >/dev/null
   then
        echo "Error Same"	
	#Do Nothing
else
        #Send Email
        ERROR=`cat $TMP`
        echo "Error occurred on `hostname`
        $ERROR
	* This is an auto-generated email *
        " | /bin/mailx -r "noreply@company.com" -s "Error occurred on `hostname`" `cat email.users`
fi

cp $TMP $TMP_FILE

# 4  
Old 06-06-2015
The cronjob's output, including errors, should go to your mailbox.

Check your mail.
Code:
$ mail

# 5  
Old 06-06-2015
Hello Junaid,

Just want to add here on Scott's comment, Cron has an own reserved syslog facility, so you should have a look into /etc/syslog.conf (or the equivalent file in your distro) to see where messages of facility cron are sent. Also you can check /var/spool/mail/user_name too for same. Let us know is this helps.


EDIT: Also while checking your script I found out that line if diff $TMP $TMP_FILE >/dev/null
I think what you are trying to do here to, not to display the differance in standard output, this command will redirect output to /dev/null so each time condition will be FALSE and if I am right here then you can use following then.

Here is an example which I have tested for same.
Input files:
Code:
cat chumm1
test test1
test
 
cat chumm2
test test1
test20


Now check this following command out.
Code:
if [[ -z $(diff chumm1 chumm2 2&>1 /dev/null)
then
       echo "There are differances.";
else
       echo "there is nothing";
fi

Output will be as follows.
Code:
There are differances.

Also why can't you go for a variable named email_users="x@chumma.com y@chumma.com z@chumma.com .

Code:
echo "Error occurred on `hostname`
        $ERROR
 * This is an auto-generated email *
        " | /bin/mailx -r "noreply@company.com" -s "Error occurred on `hostname`" $email_users < $ERROR

Could you please try same and let us know if that helps.


Thanks,
R. Singh

Last edited by RavinderSingh13; 06-06-2015 at 04:29 AM.. Reason: Added more clarification and found a little bug in user's script
# 6  
Old 06-06-2015
Ravinder, the diff is okay; the redirection of stdout does not clear the exit status.
In fact your correction is faulty:
2&>1 should be 2>&1 (redirect stderr to descriptor 1, and should be appended to also go to /dev/null), but is not needed for diff AFAIK.
--
Actually I don't see anything wrong in the script. Note that email.users is expected in the cron user's home directory.
These 2 Users Gave Thanks to MadeInGermany For This Post:
# 7  
Old 06-06-2015
There doesn't appear to be anything wrong with the script. As Don said (post#2), nearly all these things are because the interactive login and cron environments are different; perhaps the variables set in .profile, or the path searched. These things need to be deliberately set at the start of the script to match those in effect when the script is run interactively.

Read again Don's post#2.
This User Gave Thanks to hicksd8 For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Red Hat

Crontab is not working

Dear Friends, I have Red Hat Linux Enterprise version 6.3. running SAP and oracle. I have created one crontab for user orasid to execute one job periodically. But it is not executing. I have checked crontab service is running. Please help in the matter. Regards, Bhagawati Pandey (5 Replies)
Discussion started by: BPANDEY
5 Replies

2. Linux

Crontab not working

Hi, I know this is a common topic. I'm trying to launch a perl script using a contab -e entry. I've been trying diff options but nothing seems to work: My cron is running: UID PID PPID C STIME TTY TIME CMD root 3755 1 0 Nov27 ? 00:00:00 crond This... (4 Replies)
Discussion started by: krebe
4 Replies

3. UNIX for Advanced & Expert Users

Crontab not working, please help

Hi, When I set the crontab to run every minute, every hour, it works fine. * * * * * env > /tmp/env.output However I want to run it every day at 8:00 AM and it does not run. * 8 * * * env > /tmp/env.output I ran the 'date' command which says it's 8AM PST and also the 'TZ'... (0 Replies)
Discussion started by: samantha13
0 Replies

4. Solaris

crontab not working

Shell = ksh Hi all, I scheduled an automated job on my application server like below, 30 13 * * 1-5 $HOME/my_script.sh However the script was not executed as expected. Any reason that may cause this to happen? (6 Replies)
Discussion started by: isaacniu
6 Replies

5. Red Hat

crontab is not working!!

I can run manually script of ntopdump.sh but crontab can't run this script very five minutes. # crontab -l */3 * * * * root sh /root/ping.sh */5 * * * * root sh /root/ntopdump.sh # # pwd /root # ls -l total 88 -rwxrwxr-x 1 root root 1645 Jun 14 19:01 anaconda-ks.cfg drwxrwxr-x 2 root... (14 Replies)
Discussion started by: getrue
14 Replies

6. UNIX for Dummies Questions & Answers

crontab not working

Hi, I had setup crontab to execute my script every day midnight 00:00 Below are the current settings. crontab -l 0 0 * * * /apps/bin/compress.ksh_moht > /dev/null 2>&1 Should it not work? I need help fix this? (8 Replies)
Discussion started by: shifahim
8 Replies

7. Solaris

crontab is not working.

I have a script which name is sicaklik.sh It is in the root directory. I can run manually but I want to run automatically every 3 minutes but it is not working. WHY? #whoami root #crontab -l #ident "@(#)root 1.21 04/03/23 SMI" 3 * * * * sh ./sicaklik.sh #ls -l sicaklik*... (6 Replies)
Discussion started by: getrue
6 Replies

8. UNIX for Advanced & Expert Users

crontab not working

Dear all We have SunOS 5.10 Generic_127127-11 sun4u sparc SUNW,Sun-Fire-V250 i have scheduled cronjob but its not working Crontab details 15 15 * * * /d5/oratest/testdb/hotbackup_new.sh TEST247 15 15 * * * mkdir -p rajesh /d4/appltest Crontab log details > CMD: mkdir... (4 Replies)
Discussion started by: rajesh_hv
4 Replies

9. UNIX for Advanced & Expert Users

crontab NOT working

Hi, I have put the following entry in crontab and it is NOT working 1 * * * * && /mybin/myjob.sh As today is Sep 26th, Iam using NF-4 to test. Thanks (2 Replies)
Discussion started by: baanprog
2 Replies

10. UNIX for Dummies Questions & Answers

crontab not working right

I am having problems with a sparc5 solaris 7 box, when i try to edit cron, (crontab -e as root), it says $ crontab -e 0 and then nothing, if i enter anything it errors out but does accept q for quit. But doesn't bring up my editor of the cron file. How can I troubleshoot this? ... (3 Replies)
Discussion started by: kymberm
3 Replies
Login or Register to Ask a Question