最近tomcat老是死,懒得看程序有什么内存漏洞了,直接写个重启脚本,顺便生成静态主页减低负担吧。。。
out_index=/usr/local/tomcat/webapps/ROOT
/bin/rm -f $out_index/test.html;
/usr/bin/wget –quiet –no-check-certificate –timeout=10 -t 2 -O $out_index/test.html https://mima.help.163.com/ts_login.do
if test -s $out_index/test.html;
then
/bin/mv -f $out_index/test.html $out_index/index.html;
else
/usr/bin/killall -9 java;
/bin/sleep 10;
/sbin/service tomcat start;
echo restart @ `/bin/date` >> /home/ssmax/restart.log;
fi
/bin/rm -f $out_index/test.html;
刚发现wget的retry默认竟然是20次的。。。我一直以为是两次,郁闷得狠。
今天alin告诉我他辞职了,准备到华为碰碰运气,祝他一帆风顺了~别忘记继续打wow就行。我看comx那丫半年能不能到60。
Leave a Reply