ADSM-L

Re: Script for paging

2002-08-23 17:41:47
Subject: Re: Script for paging
From: "Mauro Jr, Frank" <Frank.MauroJr AT LIBERTYMUTUAL DOT COM>
To: ADSM-L AT VM.MARIST DOT EDU
Date: Fri, 23 Aug 2002 17:43:15 -0400
The following scripts pages you if the server is down; it does not page
you if the server is hung because the command hangs.

#!/bin/ksh

 

NOTIFICATION=TSM not responding on goko'

 

ADSMCM=$(dsmadmc -id=xxxx -pa=xxxx query db)

RC=$?

 

if [ ${RC} != 0 ] ; then

   print -- "$NOTIFICATION" | mail -s "TSM/goko not responding"
1234567 AT skytel DOT com           
else

exit ${RC}

fi

exit ${RC}              




This command lets you know if all you tape drives are down:

#!/bin/ksh

adsmcmd=$(dsmadmc -id=xxxx -pa=xxxx query db)

RC=$?

 

if [ ${RC} != 0 ] ; then

        exit

else

 

Tapedrives=''

TapedrivesMagstar='0'

 

 

dsmadmc -id=xxxx -pa=xxxx q drive | grep ADAM | grep Yes | \

while read line

do

        (( TapedrivesMagstar = TapedrivesMagstar + 1 ))

done

 

if  [ ${TapedrivesMagstar} = 0 ]; then

        Tapedriveproblem="There are no tape drives available on goko"

        print -- "$Tapedriveproblem" | mail -s "There are no tape drives
available on goko" 7593127 AT skytel DOT com

fi

 

fi

                                                        

-----Original Message-----
From: Jin Bae Chi [mailto:Jbaechi AT CSCC DOT EDU] 
Sent: Friday, August 23, 2002 4:51 PM
To: ADSM-L AT VM.MARIST DOT EDU
Subject: Script for paging


Hi, Experts,

Anybody can send me a sample script that makes the server (AIX) page me
when getting certain server log messages? Pleaseeeeeee? I/O error from
tape library brought the server down several time last week. Thanks as
always.



Jin Bae Chi (Gus)
Data Center
614-287-2496
614-287-5488 Fax
e-mail: jbaechi AT cscc DOT edu

<Prev in Thread] Current Thread [Next in Thread>