Hi Darryl. I need a script that do the same you mention: " For myself, I have scripts that detects when the service is down, sends me an email, then tries to restart it, then will email if it has managed to recover it. If it can't restart it after 5 minutes, then I get an SMS."
Can you share it? Thanks, Jorge. -----Mensaje original----- De: Darryl Lewis [mailto:darryl.le...@unsw.edu.au] Enviado el: sábado, 19 de marzo de 2011 23:17 Para: Tomcat Users List Asunto: Re: How to detect down of tomcat. Opps...typo #!/bin/sh if [ `ps -ef|grep tomcat|grep -v grep|wc -l` -lt 1 ] then NOW=`date` subject="tomcat down $NOW" address="m...@domain.com" ps -ef>att.txt mail -s "$subject" "$addr" -- -fno-reply@yourdomain< att.txt fi On 20/03/11 2:00 PM, "Darryl" <darryl.le...@unsw.edu.au> wrote: Put this in a cronjob to fire every minute #!/bin/sh if [ `ps -ef|grep tomcat|grep -v grep|wc -l` -lt 1 ] then subject=`tomcat down; date` address="m...@domain.com" ps -ef>att.txt mail -s "$subject" "$addr" -- -fno-reply@yourdomain< att.txt fi Fill in the address with your email address, and you can also pipe an attachment For myself, I have scripts that detects when the service is down, sends me an email, then tries to restart it, then will email if it has managed to recover it. If it can't restart it after 5 minutes, then I get an SMS. In the morning, I can quickly see if it failed overnight, and my beauty rest only gets disturbed in the really bad cases. On 20/03/11 1:38 PM, "Hide" <hide3...@ob4.aitai.ne.jp> wrote: How to detect down of tomcat. Helo. My environment is tomcat7, java1.6, windows. When process of tomcat terminated abnormally, is there any method or setting that output the abnormal termination to a log file? If there is it, please let me know. tomcat is the premise that is not service of windows, but even service is good. The motive that wants to know such a thing is because I want to detect down of tomcat in automatically without human operation. I set a file and keyword in a log monitor tool, and it detects down of tomcat automatically. Thanks for your advice. --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org