tomcat 启动和关闭脚本

时间:2023-03-09 20:07:59
tomcat 启动和关闭脚本

start.sh

#!/bin/sh

. ~/.bash_profile
echo "" > ${TOMCAT_HOME}/logs/catalina.out;
sh ${TOMCAT_HOME}/bin/startup.sh
tail -f ${TOMCAT_HOME}/logs/catalina.out

stop.sh

#!/bin/sh

#set -x
. ~/.bash_profile sh ${TOMCAT_HOME}/bin/shutdown.sh proc_count=`ps -ef | grep -v grep | grep tomcat | wc -l`
if [ ${proc_count} -gt ];then
        ps -ef |grep -v grep | grep tomcat | awk '{print $2}' | xargs kill -;
fi