Need help with ksh script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Need help with ksh script
# 1  
Old 06-27-2012
Need help with ksh script

Hi,

I need to use ksh script to do following

Code:
/usr/ucb/ps -augxww | grep  ALGX_DEV__AS2 | awk '{print $14}'

if above ps command return nothing
then
run this:
Code:
/opt/OV/bin/OpC/opcmsg severity=critical application=SF_Symphony object=Script msg_text="Process not running" msg_grp=ALGX_DEV

and if ps command return successful then don't output anything and wait.

So this is what i have done and I am new to scripting so please bare with me if there are mistakes below:

Code:
#!/usr/bin/ksh
PS=`/usr/ucb/ps -augxww | grep  ALGX_DEV__AS2 | awk '{print $14}'`
        if [$PS -lt 1]
         then
          /opt/OV/bin/OpC/opcmsg severity=normal application=Test object=Script msg_text="Process not running" msg_grp=Test
  fi

So when i run above script manually i get this error:
Code:
./javaproc.sh[3]: test: ] missing

Thanks for your help.
Desi

Last edited by methyl; 06-27-2012 at 04:19 PM.. Reason: please use code tags
# 2  
Old 06-27-2012
MySQL

It should be if
Quote:
[ $PS -lt 1 ]
Quote:
#!/usr/bin/ksh
PS=`/usr/ucb/ps -augxww | grep ALGX_DEV__AS2 | awk '{print $14}'`
if [ $PS -lt 1 ]
then
/opt/OV/bin/OpC/opcmsg severity=normal application=Test object=Script msg_text="Process not running" msg_grp=Test
fi
This User Gave Thanks to kalpeer For This Post:
# 3  
Old 06-27-2012
Quote:
Originally Posted by kalpeer
It should be if
Ok so space was the issue? I added the space between brackets and now i get this error
Code:
#!/usr/bin/ksh
PS=`/usr/ucb/ps -augxww | grep ALGX_DEV__AS2 | awk '{print $14}'`
        if [ $PS -lt 1 ]
         then
/opt/OV/bin/OpC/opcmsg severity=normal application=Test object=Script msg_text="Process not running" msg_grp=Test
  fi

./javaproc.sh[3]: test: argument expected

for debug i did

Code:
# sh -x ./javaproc.sh
+ /usr/ucb/ps -augxww 
+ awk {print $14} 
+ grep PLGX_Prod__MgdSvr2 
PS=
+ [ -lt 1 ] 
./javaproc.sh: test: argument expected


Last edited by methyl; 06-27-2012 at 04:25 PM.. Reason: please use code tags. Seeing white space is so important.
# 4  
Old 06-27-2012
Please post the output from:
Code:
/usr/ucb/ps -augxww | grep ALGX_DEV__AS2

/usr/ucb/ps -augxww | grep ALGX_DEV__AS2 | grep -v "grep"

/usr/ucb/ps -augxww | grep ALGX_DEV__AS2 | awk '{print $14}'

/usr/ucb/ps -augxww | grep ALGX_DEV__AS2 | grep -v "grep" | awk '{print $14}'


PS I have no idea how $PS could contain a number, hence this post.
# 5  
Old 06-27-2012
Here it is:
I only want to run opcmsg when this process goes down.
Code:
-Dweblogic.Name=ALGX_DEV__AS2

Code:
# /usr/ucb/ps -augxww | grep ALGX_DEV__AS2
ecomadm  28706  0.1  0.81522040509120 ?        S 02:23:55  6:10 /appbin/sf/Oracle/Fiddlefare/11.1.1.5/jdk160_24/bin/java -server -Xms256m -Xmx512m -XX:MaxPermSize=128m -Dweblogic.Name=ALGX_DEV__AS2 <deleted>
[1] +  Done                    /usr/ucb/ps -augxww | grep ALGX_DEV__AS2



# /usr/ucb/ps -augxww | grep ALGX_DEV__AS2 | grep -v "grep"
ecomadm  28706  0.1  0.81522040509120 ?        S 02:23:55  6:10 /appbin/sf/Oracle/Fiddlefare/11.1.1.5/jdk160_24/bin/java -server -Xms256m -Xmx512m -XX:MaxPermSize=128m -Dweblogic.Name=ALGX_DEV__AS2 <deleted>
[1] +  Done                    /usr/ucb/ps -augxww | grep ALGX_DEV__AS2 | grep -v "grep"



# /usr/ucb/ps -augxww | grep ALGX_DEV__AS2 | awk '{print $14}'
-Dweblogic.Name=ALGX_DEV__AS2
[1] +  Done                    /usr/ucb/ps -augxww | grep ALGX_DEV__AS2 | awk '{print $14}'



# /usr/ucb/ps -augxww | grep ALGX_DEV__AS2 | grep -v "grep" | awk '{print $14}'
-Dweblogic.Name=ALGX_DEV__AS2
[1] +  Done                    /usr/ucb/ps -augxww | grep ALGX_DEV__AS2 | grep -v "grep" | awk '{print $14}'


Last edited by methyl; 06-27-2012 at 05:29 PM.. Reason: please use code tags ; layout for clarity; more layour
# 6  
Old 06-27-2012
Okay, the value of $14 is never a number. Therefore $PS is never a number.
Perhaps you need to count the hits? The awk is not necessary.

Code:
#!/usr/bin/ksh
PS=`/usr/ucb/ps -augxww | grep "ALGX_DEV__AS2" | grep -v "grep" |wc -l`
if [ ${PS} -eq 0 ]
then
         /opt/OV/bin/OpC/opcmsg severity=normal application=Test object=Script msg_text="Process not running" msg_grp=Test
fi

Hmm. severity=normal ? That would reset the Openview alert after a previous failure.

Mystified. The Done lines suggest that you are putting a every command into background with an & character at the end of the line or backgrounding commands with some other method like ^Z. Very weird.

Word of warning. On a heavily loaded system ps can miss processes. It is safer to react to three consecutive failures rather than just the one. At least repeat the check at the start of the restart script and abort if the process is in fact still running.

Last edited by methyl; 06-27-2012 at 05:42 PM.. Reason: typos and addenda
# 7  
Old 06-27-2012
ok i configure the script as you suggested and now output is clean but no message comes in from opcmsg?
severity was for testing only. change it to warning.

here is debug

# sh -x ./javaproc.sh
+ /usr/ucb/ps -augxww
+ grep PLGX_Prod__MgdSvr2
+ wc -l
+ grep -v grep
PS= 0
+ [ 0 -eq 1 ]

Last edited by Desibaba; 06-27-2012 at 06:45 PM.. Reason: please use code tags
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Script to replace lines in ksh Script

Hi All, I am novice to Unix and I need your expert advice for the below task. There is a KSH script file in which I need to replace few line as per the below expectations. So my file look like as # Host Setup Command: Line 1 Line 2 Line 3 Line 4 Line Any... (6 Replies)
Discussion started by: rupid0609
6 Replies

2. Shell Programming and Scripting

Deploy ksh script to file from other script

Hi all, I need to deploy two scripts on around ~100 machines and have only OPSware. Opsware have the option to execute a script, so I am trying to write a script which dose cat > script.ksh <<EOF script to be deployed EOF However the script between the two EOFs gets also executed which... (0 Replies)
Discussion started by: click
0 Replies

3. Shell Programming and Scripting

Help Create dynamic ksh script from a script

I am currently running 2 scripts to gather data for a 3rd script and would like to combine the 2 scripts into one. Having issues with the final output format. Note cannot post URL so replaced the http stuff with (name) in the examples All scripts contain #!/bin/ksh OS = Red Hat Enterprise... (0 Replies)
Discussion started by: pcpinkerton
0 Replies

4. Shell Programming and Scripting

KSH script to run other ksh scripts and output it to a file and/or email

Hi I am new to this Scripting process and would like to know How can i write a ksh script that will call other ksh scripts and write the output to a file and/or email. For example ------- Script ABC ------- a.ksh b.ksh c.ksh I need to call all three scripts execute them and... (2 Replies)
Discussion started by: pacifican
2 Replies

5. Shell Programming and Scripting

passing a variables value from the called script to calling script using ksh

How do i get the value of the variable from the called script(script2) to the calling script(script1) in ksh ? I've given portion of the script here to explain the problem. Portion of Script 1 ============= ----- ----- tmp=`a.ksh p1 p2 p3` if then # error processing fi -----... (10 Replies)
Discussion started by: rajarkumar
10 Replies

6. Shell Programming and Scripting

import var and function from ksh script to another ksh script

Ih all, i have multiples ksh scripts for crontab's unix jobs they all have same variables declarations and some similar functions i would have a only single script file to declare my variables, like: var1= "aaa" var2= "bbb" var3= "ccc" ... function ab { ...} function bc { ... }... (2 Replies)
Discussion started by: wolfhurt
2 Replies

7. Shell Programming and Scripting

tracing a ksh script within a ksh script

I normally trace a script with the ksh -x <script name> and redirect strderr to file. But if you have a script like the examble below...... vi hairy bear=`grep bear animals` if then ksh more_animals fi If I ksh -x hairy it won't trace "more_animals" unless I put a -x in it. Is... (1 Reply)
Discussion started by: shorty
1 Replies

8. Shell Programming and Scripting

how to convert unix .ksh script to windows .batch script

I am using awk in my .ksh script but when I am trying to run in windows its not recognising awk part of the ksh script , even when I changed it to gawk it does not work, this is how my .ksh and .bat files look like. thanx. #!/bin/ksh egrep -v "Rpt 038|PM$|Parameters:|Begin |Date: |End... (1 Reply)
Discussion started by: 2.5lt V8
1 Replies

9. Shell Programming and Scripting

executing a ksh script from another ksh script

Hi, I'm new to unix scripting.How can i call a script from another script. I have a.ksh and b.ksh .I have to call b.ksh from a.ksh after it is successfully exceuted. I tried using #!/bin/ksh -x in a.ksh and at the end i have used /path/b.ksh My problem is it is executing only a.ksh.it... (6 Replies)
Discussion started by: ammu
6 Replies

10. UNIX for Dummies Questions & Answers

SQL Script run in KSH Script

I've got a SQL script that is executed through a UNIX ksh script. It is working fine, but I wanted to add a line to put a date/time stamp in the log file that it generates. This is more of a SQL question, but I'm hoping someone can help me get the date/time...I've changed the script with the... (2 Replies)
Discussion started by: dstinsman
2 Replies
Login or Register to Ask a Question