重启tomcat之shell脚本

#!/bin/bash
pid=`lsof -i:8080 |sed -n 2p  | awk '{print $2}'`

echo $pid

if [ "-$pid" = "-"  ];then
	echo "start to restart tomcat at port 8080"
	su -  huawei -c 'sh /home/huawei/tomcat/bin/startup.sh'  
#	cd /home/huawei/tomcat/bin
	#sh startup.sh

fi

 

发布了295 篇原创文章 · 获赞 4 · 访问量 4万+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章