- 论坛徽章:
- 0
|
本帖最后由 alex3714 于 2011-04-11 09:54 编辑
帮我写个脚本吧 谢谢。 检测系统的squid服务有无启动 如果没有的话启动 源码编译 的 安装在/usr/local/squi ...
daocaoren0311 发表于 2011-04-09 22:48 ![]()
请参考以下脚本,实现是同样的功能……
#!/bin/bash
Log_Dir=/root/script
Process=rds
IP_Addr=`/sbin/ifconfig|grep "inet addr"| awk 'NR==1{ print $2}'`
P_Num=$(ps -ef|grep '\brds\b' |grep -v grep|grep -v process-monitor| awk '{print $2}'|wc -l)
echo -e "\n\n The $Process process on server $IP_Addr has been restarted ......\n" > $Log_Dir/rds_process.log
echo -e "\n\n The $Process process on server $IP_Addr has been found dead ,I have tried to restart it but failed ,please look at the $Process 's log to find
the reason .....\n" > $Log_Dir/rds_process.log2
Mail_subject="$Process has been restarted!"
Mail_content=`cat $Log_Dir/rds_process.log`
Mail_subject2="$Process is Down!!!"
Mail_content2=`cat $Log_Dir/rds_process.log2`
if [ $P_Num -lt 2 ];then
su - rdsprod -c "sh /RdsProd/rds/bin/crontabNohupRDS.sh"
sleep 5
P_Num=$(ps -ef|grep '\brds\b' |grep -v grep|grep -v process-monitor| awk '{print $2}'|wc -l)
if [ $P_Num -lt 2 ];then
/opt/java_64/jdk1.6.0_17/bin/java -classpath /fmnp/soft/sms/mailandsms.jar com.cicc.data.SendMessage ibf "$IP_Addr : $Mail_subject2" "$Mail_
content2"
mail lijie2@cicc.com.cn,wanzy@cicc.com.cn,xuebiao@cicc.com.cn,qianqm@cicc.com.cn -s "$IP_Addr : $Mail_subject2" < $Log_Dir/rds_process.log
2
# mail lijie2@cicc.com.cn -s "$IP_Addr : $Mail_subject2" < $Log_Dir/rds_process.log2
else
/opt/java_64/jdk1.6.0_17/bin/java -classpath /fmnp/soft/sms/mailandsms.jar com.cicc.data.SendMessage ibf "$IP_Addr : $Mail_subject" "$Mail_c
ontent"
mail liji2@cic.com.cn,nzy@cic.com.cn -s "$IP_Addr : $Mail_subject" < $Log_Dir/rds_process.log
# mail lijie2@cicc.com.cn -s "$IP_Addr : $Mail_subject" < $Log_Dir/rds_process.log
fi
else
echo -e "The monitor script was running at *******: `date +%F-%H:%M`" >> /var/log/process-monitor.log
# su - rdsprod -c "mail lijie2@cicc.com.cn -s "$IP_Addr : $Mail_subject" < $Log_Dir/rds_process.log"
exit
fi
#rm -rf $Log_Dir/rds_process.log
echo -e "The monitor script was running at *******: `date +%F-%H:%M`" >> /var/log/process-monitor.log |
|