exit status conditions


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers exit status conditions
# 1  
Old 05-15-2007
Exit status

Hi all,

i am writing a script to test if some servers are down and prompt if test positive. i used rlogin and rsh then exit but the script when run, logs into the servers and stays.
pls what can i do to salvage this? or what other options do you suggest?
# 2  
Old 05-15-2007
exit status conditions

hello all,

i'm having a problem with a script i wrote to login to two servers(clusters), i want it to check the second if the first fails i.e link down/file not found/cannot open file. i used the exit status command $? but it returns 0 (success) even if the file cannot be read. please help out.
# 3  
Old 05-15-2007
Could you post some code that does not work?

Are you logging in via telnet or ssh?
# 4  
Old 05-15-2007
Other thread merged.
# 5  
Old 05-15-2007
Java

day=`date '+%d'`

for i in 2 3
do

FILE=MSISDNs/SDP$i\Sub_`date '+%Y%m%d'`.txt
FILECOUNT=MSISDNs/SDP_`date '+%Y%m%d'`.txt

rsh sdp$i\a cat /var/opt/sdp/TT/dump/SDP$i\.DUMP_subscriber$day.csv | awk -F, '{print $1,$7}'|grep ' 1' | awk '{print $1,$2}' >$FILE

||
#if [ $? -ne 0 ]; then

rsh sdp$i\b cat /var/opt/sdp/TT/dump/SDP$i\.DUMP_subscriber$day.csv | awk -F, '{print $1,$7}'|grep ' 1' | awk '{print $1,$2}' >$FILE

#fi

done

#i am using a telnet connection ; the script is supposed to run the second rsh command if the first fails like cannot open file,cannot login to server, file not found and other failures.




Thanks.
# 6  
Old 05-15-2007
Why don't you ping the hosts before attempting a rsh ?

ping -c1 ${host1} 1>/dev/null 2>/dev/null
if [ $? -eq 0 ]
then
rshhost=${host1}
else
ping -c1 ${host2} 1>/dev/null 2>/dev/null
[ $? -ne 0 ] && exit 99
rshhost=${host2}
fi

rsh ${rshhost} "blah blah"

#Return Code 99 means all the cluter nodes are down.
# 7  
Old 05-16-2007
thanks

thanks y'all

i tried pinging the hostA and greping the output to check if alive then used an if to check the exit status if successful else ping hostB and do the same if not then send SMS to mobile phones thats where i'm stucked.

Somebody help pls..........
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Want to get the exit status

Hi All, I am trying to create a zip file with all the txt files(these are in large number) in the current directory. I am able to do this operation sucessfully. After this i want to get the status of the tar command executed and do accordingly. When i am trying with the below code, the status... (3 Replies)
Discussion started by: paddu
3 Replies

2. Shell Programming and Scripting

exit status from the script is always 0

Hi , I have a bash script , which does the network configuration. Messages from this script are dumped on console as well as stored in a log file . This script is invoked from a C code using system call . The script returns different exit code , to indicate different error cases. The... (1 Reply)
Discussion started by: abhirai
1 Replies

3. Shell Programming and Scripting

Exit Status

I have a shell script (#!/bin/sh) that interacts with Appworx and Banner Admin. In my script I want to check the exit status of awrun before continuing. awrun can run for 10 seconds or it can run for over a minute. So my question is, will it go through my if statement before awrun may even be... (2 Replies)
Discussion started by: smkremer
2 Replies

4. UNIX for Dummies Questions & Answers

Processes and exit status

Hi, I can't understand why the last $? is 1? can somebody plz help me to understand it? thanks $ ksh $ ps -f UID PID PPID C STIME TTY TIME COMMAND msarabad 12361 12319 0 15:17:58 pts/1 0:00 ksh msarabad 12319 12317 0 15:15:11 pts/1 0:00 -sh msarabad 12362 12361 ... (7 Replies)
Discussion started by: messi777
7 Replies

5. UNIX for Dummies Questions & Answers

$? = Exit status variable

hi, exit status variable $?, returns some digits. 0 ---> succes. 1..126 Failure (the program itself will decide what the numbers mean) 127 Command not found 128..254 The program did not exit normally. (E.g., it crashed, or received a signal) 255 Invalid exit code well, if $?... (4 Replies)
Discussion started by: dummydba
4 Replies

6. Shell Programming and Scripting

Exit status

I'm preparing for exam and one of exams is to write own test command... I wonder if in unix is a command which just returns exit code you specify.. I know I can easily write a function like this: exStatus() { return $1 } -> my question is rather theoretical thank you! (9 Replies)
Discussion started by: MartyIX
9 Replies

7. Shell Programming and Scripting

How to get the exit status

Hi all, I'm running a program which return 1 upon success. But when encounters problem shell return 's '1' . How to differentiate between them the shell return value and script return value. Ex. function fn return '1' if executed successfully and '0' if failed. But when if shell encounters... (1 Reply)
Discussion started by: yhacks
1 Replies

8. Shell Programming and Scripting

Checking Exit Status

I hope one of you smart people out there can help me with what seems like a real simple questing but I can't quite figure out. In a script I am doing a cmp on two files. I am trying to check the exit status with an if statement but can't seem to figure out the syntax. If the exit status is 1 I... (4 Replies)
Discussion started by: PrimeRibAndADew
4 Replies

9. Shell Programming and Scripting

Problem with exit status

Hi, Consider the output of the following commands: case1) ------- # ifconfig -a | grep "UP" | grep uplink0:1 # echo $? Output is: 0 case2 ------ # ifconfig -a | grep "UP" | grep uplink0:1; echo $? Output is: 1 In case2 we got the exit code as 1, which is the actual exit code.... (1 Reply)
Discussion started by: diganta
1 Replies

10. Shell Programming and Scripting

exit status

i downloaded a text file from metalab.unc.edu called sh.txt and in this reference manual it refers to shell scripting exit status .. at the end of one of the examples that author gave an exit status of 127.. to what does a 127 exit status refer too and what is its purpose in the code. moxxx68 (1 Reply)
Discussion started by: moxxx68
1 Replies
Login or Register to Ask a Question