Operating System - HP-UX
1748092 Members
5978 Online
108758 Solutions
New Discussion юеВ

Re: java process check script

 
rajesh73
Super Advisor

java process check script

i need to write the script when java process not shows, because my application running in java based.

 

so i need alert mail when java process failed

 

 

~]# ps -ef |grep java
Admin 17774     1  1 08:39 ?        00:12:48 /opt/apache-tomcat/
root     23073 23055  0 22:29 pts/2    00:00:00 grep java

 

 

if the admin process failed , i need alert mail

2 REPLIES 2
Steven Schweda
Honored Contributor

Re: java process check script

 
Dennis Handly
Acclaimed Contributor

Re: java process check script

>I need alert mail when java process failed

 

What is the name of the process?  What if there are many java processes?

UNIX95=EXTENDED_PS ps -f -C java 2> /dev/null | grep -q java

if [ $? -ne 0 ]; then

   echo "ps can't find any java processes" | mailx -s "No java process" mail-address

fi