我正在尝试编写一个脚本,将运行并发送关于成功重启服务器的通知电子邮件,但是,我应该如何以最好的方式这样做?
Weblogic 8.1
可能不是最好的方法,但是假设您在Linux/Unix环境中工作,您可以尝试这个脚本。这将监视您的Weblogic启动脚本的关键字(我选择"in RUNNING mode")。
COUNTER=0
while [ $COUNTER -le 5 ]
do
grep "started in RUNNING mode" <full path and name of log file>
if [ $? -eq 0 ];
then
mail -s 'Server started' your_email@mail.com </dev/null
break
fi
COUNTER=`expr $COUNTER + 1`
sleep 6
done