![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Automatically Running Scripts | jeffreydavisjr | UNIX for Dummies Questions & Answers | 4 | 11-19-2008 05:05 AM |
| running test | skooly5 | Linux | 2 | 04-07-2008 12:22 PM |
| running multiple scripts | nvuradi | Shell Programming and Scripting | 3 | 08-13-2007 09:53 AM |
| Running SQL Scripts from Shell script - Need insight! | manthasirisha | Shell Programming and Scripting | 6 | 07-03-2006 10:55 PM |
| Script to Test Application Server is running | duglover | UNIX for Dummies Questions & Answers | 0 | 04-28-2004 09:47 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Script to test for scripts running
Hi,
Im writing a script that will check which scripts are running. The script will run on a 5min loop and the status of the scripts will be written to the log. If any of the scripts arent running an email will be sent out. At the min if all scripts are running an entry is made to the log saying so. If any are down an entry is made to the log saying tis and an email is sent out. The problem is that the email sent out just sends out the name of the last script in AllScripts.txt(even if it is not down). I wish to have the script compare which scripts are not running against the list in my file and include these scripts in the email. Ideally I would also like to list the scripts that are down in my log but I figure if I can get one working I'll be able to do the other. Any info/help would be appreciated cos I have hit a bit of a block. Heres what I got so far:- chk_scripts.sh: Code:
log() {
/usr/bin/echo "$1" >> ${LOGFILE}
}
checkstatus(){
serverName=`grep $i $confFile|sed 's/^[ ]*\([^= ]*\)[= ].*$/\1/g'`
pid=`ps -efa | grep $serverName|grep -v 'grep '|sed 's/^[^0-9]*\([0-9]*\)[^0-9].*$/\1/'`
if [ "$pid" = "" ]
then
srvr_status="N"
else
srvr_status="Y"
fi
}
ChkScript(){
confFile="/var/tmp/Paul/scripts/AllScripts.txt"
for i in `cat $confFile`
do
myScript=`echo $i|sed 's/^[ ]*\([^= ]*\)[= ].*$/\1/g'`
checkstatus
if [ $srvr_status="N" ]
then
ScriptList="$myScript "
fi
done
#log "ERROR : $ScriptList not Running !!!!"
if [ $mail_count -le 10 ]
then
echo "$ScriptList not running!!!!" | /usr/lib/sendmail paul@me.com
mail_count=`expr $mail_count + 1`
fi
}
##################################################################
LOGFILE=/var/tmp/Paul/scripts/chk_myscripts.log
SCRIPTNAME="chk"
mail_count=0
while true
do
ScriptList=""
lpaprocess=`ps -efa |grep $SCRIPTNAME |grep -v 'grep ' |wc -l`
if [ $lpaprocess -eq 4 ]
then
mail_count=0
log "All CHK Scripts Running"
elif [$lpaprocess -lt 4 ]
then
log "CHK script not running!!!!"
#ProcList="FAL"
ChkScript
fi
sleep 300
done
fi
Code:
/var/opt/moto/live/scripts/chk_pending.sh /var/opt/moto/live/scripts/chk_process.sh /var/opt/moto/live/scripts/chk_log_test1.sh /var/opt/moto/live/scripts/chk_log_test2.sh Paul |
|
|||||
|
i know is not the perfect answer, but i think you better check out hobbit script for procs
it does exactly what you want, even better, you could use the client The Hobbit Monitor |
|
|||||
|
fair enough.
i think you are over working with that script. i would do like this (psudo code) Code:
make a full ps and save it to a temp file.
for each line in the AllScripts.txt file
grep the line we just read in the ps output
if we found it
send some ok or just do nothing
if we dont find it
mail -s we are under atack superman@gmail.com
PS ps -whatevarOptionsForYourUnix > /tmp/tempile "for each line" <-- i would use a rediction to a while Code:
while read line
do
echo "line is a var wich contains one single line read fomr the file, including newline"
echo " this is $line"
done < /var/tmp/Paul/scripts/AllScripts.txt
"grep the line" just use grep $line /tmp/tempfile "if we found it" check for greps erturn code. i think that goes liek this 0 - grep found at least something 1= grep did not find anything and you check if with if [ $? -eq 0 ] $? holds the return code of the last program/subshell spawned -eq is an option for test that is read "equals" and aplies to integers that would be the basic skeleton. the decicion structures and stuff. you can read alot more about bash and scripting here. (Ħincluding test, internal bash variables, and redictions) Advanced Bash-Scripting Guide |
|
||||
|
Cheers. Im looking into that.
At the min im writing my grep to output to a tmp file. I can get this working but includes my actual grep in the output too. I know -v is used to hide the grep but not sure how it should look in a script. Heres what I got: Code:
ps -efa | grep chk > /var/tmp/Paul/scripts/tmp Code:
`ps -efa | grep chk -v > /var/tmp/Paul/scripts/tmp` Code:
`ps -efa | grep chk | grep -v 'grep '` > /var/tmp/Paul/scripts/tmp Got any suggestions? By the way, thanks for all the help so far. |
|
||||
|
Are you really using backticks in those commands? Take them out, they don't do what you want.
As an aside, the customary way to avoid a Useless Use of Grep is to grep for a regex which doesn't match itself. Code:
ps -efa | grep '[c]hk' >/path/to/tempfile |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|