我正在尝试编写一个脚本,该脚本将运行并发送有关服务器重启成功的通知电子邮件,但是,我应该如何以最佳方式执行此操作?
Weblogic 8.1
答案 0 :(得分:1)
可能不是最好的方法,但假设您在Linux / Unix环境中工作,您可以尝试使用此脚本。这将关注关键字的Weblogic启动脚本(我选择“在RUNNING模式下”)。
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