weird script in crontab


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting weird script in crontab
# 1  
Old 10-03-2008
weird script in crontab

Hello here's the first line's of the code
that works perfect on command line
but not as a crontab job ???

crontab:
Code:
15 * * * * /root/scripts/checkclamd_mem.sh

script:
Code:
#!/bin/bash

# Checks Memory of the Clamav-daemon and it's .pid file
# restarts if over the LIMIT. Starts if pid file not found

LOG="/var/log/scripts/checkclamd_mem.log"

# Limit in Mo
LIMIT=120

PID=$(ps waux | grep "clamd" | grep -v "grep" | awk '{ print $2 }')
MEM=$(ps waux | grep "clamd" | grep -v "grep" | awk '{ print $6 }')

the output of PID and MEM:
Quote:
PID: 3930 23979 24215 24216 24217
MEM: 113640 508 504 1356 504
Why the all those values when running in crontab ?
awk error ??
If someone can help me !!!???

Nils
# 2  
Old 10-03-2008
Quote:
Originally Posted by nls mchn
Hello here's the first line's of the code
that works perfect on command line
but not as a crontab job ???

crontab:
Code:
15 * * * * /root/scripts/checkclamd_mem.sh

script:
Code:
#!/bin/bash

# Checks Memory of the Clamav-daemon and it's .pid file
# restarts if over the LIMIT. Starts if pid file not found

LOG="/var/log/scripts/checkclamd_mem.log"

# Limit in Mo
LIMIT=120

PID=$(ps waux | grep "clamd" | grep -v "grep" | awk '{ print $2 }')
MEM=$(ps waux | grep "clamd" | grep -v "grep" | awk '{ print $6 }')

the output of PID and MEM:

Why the all those values when running in crontab ?
awk error ??
If someone can help me !!!???

Nils
may be if wiil be helpfull if you write full path to all binary - like /usr/bin/grep and /usr/bin/ps

you can delete 'grep command' - it possiable use only awk:
/usr/bin/ps waux | /usr/bin/awk '/clamd/{ print $2 }'

and may be better in cron use 'nohup' or redirect output like
15 * * * * /root/scripts/checkclamd_mem.sh > /tmp/out.txt 2>&1
# 3  
Old 10-03-2008
It might be that there are multiple clam daemons running, or maybe that clamd is actually a username or something. Try this:

Code:
PID=$(ps hax -o pid,cmd | awk '/clamd$/ { print $1; exit; }')
MEM=$(ps wuh $PID | awk '{ print $6 }' )

(The MEM line grabs the memory usage as before, but this time only of the actual PID as found in the previous line.)
# 4  
Old 10-03-2008
MySQL

Quote:
Originally Posted by otheus
It might be that there are multiple clam daemons running, or maybe that clamd is actually a username or something. Try this:

Code:
PID=$(ps hax -o pid,cmd | awk '/clamd$/ { print $1; exit; }')
MEM=$(ps wuh $PID | awk '{ print $6 }' )

(The MEM line grabs the memory usage as before, but this time only of the actual PID as found in the previous line.)

thx, no there are no clamd username and just 1 clamd daemon running.
The "exit;" in awk fixed it:
Code:
 PID=$(ps hax -o pid,cmd | awk '/clamd$/ { print $1; exit; }')
# and this also
PID=$(ps waux | grep "clamd" | grep -v "grep" | awk '{ print $2; exit; }')

It now works !! but I still don't understand Why ? the different behaviors
when executed from command line
or executed from crontab
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Weird difference in script execution

Hi, So I have a very simple script which loops over 5 times and prints the iterator value. #!/bin/sh START=1 END=5 for i in $(eval echo "{$START..$END}") do echo "$i" done If I save this script in a .sh file and run it in the terminal, the output I get is {1..5} (4 Replies)
Discussion started by: jamie_123
4 Replies

2. AIX

weird korn shell script

here is the one of the scripts: script1.kshfunction haha { print "calling haha" exit } script2.ksh. script1.ksh haha | tee -a /dev/null print "i am script 2" after launching the script2, the result: --------------------------------------------- calling haha i am script 2 ... (6 Replies)
Discussion started by: getter
6 Replies

3. Shell Programming and Scripting

Weird script behaviour !

Hello, I am getting an infinite loop from a script in Linux. Here is the last version of the script in question. As you can see I tried to define everything properly: #!/bin/ksh # Script to loop over a series of dates set -ex typeset -i start_date=20090701 typeset -i... (2 Replies)
Discussion started by: stavros
2 Replies

4. Shell Programming and Scripting

script acting weird..

Hi Guys, I have this script which is being called from another script, sh +x SCRIPTNAME. Now this script is failing saying the source file is missing. But i was able to see the source file was present. It was renamed and but somehow the source file is removed. There is no remove command in the... (1 Reply)
Discussion started by: mac4rfree
1 Replies

5. Shell Programming and Scripting

Weird sed behaviour in script

I've written a small script to replace certain words in all the the files in a directory. #!/bin/sh #Get list of files to be edited file_list=`ls -p` for i in $file_list do echo "Processing $i" alteredi=`echo "$i" | sed -e 's/\//d/'` if then if then #actual altering (2 Replies)
Discussion started by: Peetrus
2 Replies

6. UNIX for Dummies Questions & Answers

Weird Behavior of a Script

ok, there's a script i'm working on written in shell programming. #!/bin/sh this script is written to spit out the contents of certain variables inside of it so the output looks something like this: server01=89 server02=69 server03=89 server04=76 now, when i run this script from the... (4 Replies)
Discussion started by: SkySmart
4 Replies

7. Shell Programming and Scripting

Help with my weird script!

So I have this script titled "testing.sh" #!/bin/ksh #PROGRAM INITIALIZATION HomeDir=/home/sap/gl/ftp server=testftp01 userid=ftp_uatollmsgbus password="f&p53715" MSGLOG=${HomeDir}/msglog.txt FTPLogTmp=${HomeDir}/testing.tmp FTPLogFile=${HomeDir}/testing.log... (1 Reply)
Discussion started by: kdyzsa
1 Replies

8. HP-UX

Weird Issue with crontab.

Hello all, Normally I'm pretty comfortable with crontab, changing and updating (done it many-a-time). But in the last two days I've been pulling my hair out over the following... Details of OS: HP-UX mdirect B.11.23 U ia64 2587410573 unlimited-user license Issue: Execute a script (very... (3 Replies)
Discussion started by: Cameron
3 Replies

9. Solaris

Weird crontab problem

Greetings To All! I am running Solaris 10 in a sparc environment. Here is the deal: In /var/spool/cron/crontabs, there is a cron user named "sys". If I do a crontab -l sys, it returns: # 0 * * * 0-6 /usr/lib/sa/sa1 # 20,40 8-17 * * 1-5 /usr/lib/sa/sa1 # 5 18 * * 1-5 /usr/lib/sa/sa2... (8 Replies)
Discussion started by: RobSand
8 Replies

10. UNIX for Dummies Questions & Answers

Weird script

I need a script to do the following and have no idea how to do it...can someone help? I need to start Sql*Plus, load a query, say "unmatched.sql", run the query, then load unmatched.sc and run it, then print the output file that unmatched.sc created... any help greatly appreciated. Duckman (2 Replies)
Discussion started by: Duckman
2 Replies
Login or Register to Ask a Question