Error
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.

${pidlist}

Kill tomcat by spec dir
Friday, 23 September 2011 05:40
//Kill tomcat by spec dir


#!/bin/sh
#kill tomcat pid
pidlist=`ps -ef|grep tomcat_foobar/conf | grep -v "grep"|awk '{print $2}'`
echo "tomcat Id list :$pidlist"
if [ "$pidlist" = "" ]
then
echo "no tomcat pid alive"
else
for pid in ${pidlist}
{
kill -9 $pid
echo "KILL $pid:"
echo "service stop success"
}
fi

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/unCiY-6SKRg/13641

 


Taxonomy by Zaragoza Online