快速业务通道

linux运维初级班shell脚本编程考试及参考答案20110523

作者 佚名技术 来源 Linux系统 浏览 发布时间 2012-04-03
################
##############################################################
2.开发shell脚本apachemon,实现通过该脚本定时(每隔5分钟)监控http服务的运行状态,如果未运行则自动
调用httpdctl启动http服务,并发送mail通知系统管理员.
注意:监控方法可以为端口、进程、、URL模拟访问方式,或者三种方法综合.
说明:截止到目前仅讲了if语句,因此,就请大家用if语句来实现. 拥有帝国一切,皆有可能。欢迎访问phome.net
考试时间:15分钟

[root@oldboy-B scripts]# cat apachemon
#!/bin/sh
#created by oldboy 20110523
#QQ 31333741
. /etc/init.d/functions
HTTPPRONUM=`ps -ef|grep http|grep -v grep|wc -l`
if [ $HTTPPRONUM -lt 1 ];then
action "httpd is not running" /bin/false
action "httpd is not running" /bin/false >/tmp/httpd.log
httpdctl restart >/dev/null 2>&1
action "httpd is restart" /bin/true
mail -s "`uname -n`''s httpd restarted at `(date)`" 31333741@qq.com </tmp/httpd.log
exit 1
else
action "httpd is running" /bin/true
exit 0
fi

[root@oldboy-B scripts]# apachemon
httpd is running [确定]
[root@oldboy-B scripts]# pkill httpd
[root@oldboy-B scripts]# ps -ef|grep http|grep -v grep
[root@oldboy-B scripts]# apachemon
httpd is not running [失败]
httpd is restart [确定]
[root@oldboy-B scripts]# ps -ef|grep http|grep -v grep
root 5845 1 1 15:59 ? 00:00:00 /usr/sbin/httpd -k restart
apache 5852 5845 0 15:59 ? 00:00:00 /usr/sbin/httpd -k restart
apache 5853 5845 0 15:59 ? 00:00:00 /usr/sbin/httpd -k restart
apache 5854 5845 0 15:59 ? 00:00:00 /usr/sbin/httpd -k restart
apache 5855 5845 0 15:59 ? 00:00:00 /usr/sbin/httpd -k restart
apache 5856 5845 0 15:59 ? 00:00:00 /usr/sbin/httpd -k restart
apache 5857 5845 0 15:59 ? 00:00:00 /usr/sbin/httpd -k restart
apache 5858 5845 0 15:59 ? 00:00:00 /usr/sbin/httpd -k restart
apache 5859 5845 0 15:59 ? 00:00:00 /usr/sbin/httpd -k restart

###脚本改进####
脚本改进测试:
[root@oldboy-B /]# echo oldboytest >/var/www/html/index.htm 拥有帝国一切,皆有可能。欢迎访问phome.net
[root@oldboy-B /]# wget --quiet --spider http://10.0.0.161/index.htm
[root@oldboy-B /]# echo $?
0
[root@oldboy-B /]# ll index.htm
ls: index.htm: 没有那个文件或目录


[root@oldboy-B scripts]# cat apachemon1
#!/bin/sh
#created by oldboy 20110523
#QQ 31333741
. /etc/init.d/functions
#HTTPPRONUM=`ps -ef|grep http|grep -v grep|wc -l` #=====>这个是基于http方式进行判断
wget --quiet --spider http://10.0.0.161/index.htm #=====>这个是基于WGET URL方式进行判断
if [ $? -ne 0 ];then
#action "httpd is not running" /bin/false #=====>正式运行,最好注释掉
action "httpd is not running" /bin/false >/tmp/httpd.log
httpdctl restart >/dev/null 2>&1
action "httpd is restart" /bin/true >>/tmp/httpd.log
mail -s "`uname -n`''s httpd restarted at `(date)`"

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号