youyesyet/tomcat-restart.sh
Simon Brooke af7a8f7c25 Added custom 502 page and restart script
Temporary fix for the crash problem.
2018-09-23 08:54:14 +01:00

17 lines
435 B
Bash

#!/bin/bash
# There's a problem with YouYesYet which causes Tomcat to fall over
# from time to time; it needs fixed. This is a temporary stopgap
# simon, 20180918
wget -S https://www.projecthope.scot 2>&1 | grep 'HTTP/1.1 5'
if [ "$?" = "0" ]
then
header=`wget -S https://www.projecthope.scot 2>&1 | grep 'HTTP/1.1 5'`
timestamp=`date`
echo "${timestamp} : ${header} : Restarting Tomcat"
service tomcat8 restart
fi