可以通过tomcat / log4j完成吗?
答案 0 :(得分:1)
试试这个:
#!/bin/bash
while [ 1 = 1 ]
do
rcode="`tail -n 1000 catalina.out 2>&1 | grep -o Exception`"
if [ "$rcode" = "Exception" ]
then
echo "Something went wrong." \
| mail -s "your subject" mail@mailaddress.com
fi
sleep 180
done
肯定会有一些改进。例如。 “-n 1000”或睡眠180秒。但它应该开始。