歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux基礎 >> 關於Linux >> linuxtomcat一鍵維護腳本(值得收藏)

linuxtomcat一鍵維護腳本(值得收藏)

日期:2017/3/3 16:59:49   编辑:關於Linux
<span style="font-family: Arial, Helvetica, sans-serif;">#! /bin/sh</span>
a="/usr/share/tomcat7/webapps/ROOT"
b="/usr/share/tomcat7/webapps/ROOT.war"
c="ROOT.war"
tomcat_stop="/usr/share/tomcat7/bin/shutdown.sh"
sh "$tomcat_stop"
ps aufx | grep tomcat | grep root | awk '{print $2}' | xargs kill -9
rm -rf /usr/share/tomcat7/logs/catalina.out
if [ -d "$a" ]; then
	rm -r "$a"
fi

if [ -f "$b" ]; then
        rm  "$b"
fi

if [ -f "$c" ]; then
	cp "$c" "$b"
fi
d="/usr/share/tomcat7/bin/startup.sh"
sh "$d"
sleep 10
chmod +x work.sh
Copyright © Linux教程網 All Rights Reserved