一个简单监控Apache httpd Server的Shell脚本

一个简单监控Apache httpd Server的Shell脚本,如果发现httpd宕掉了,该shell可以自动重启apache

这个只是简单的监控,如果有更复杂的要求,建议使用nagios监控服务,发现问题后报警,再手动处理

httpdcheck.sh

  1. #!/bin/bash
  2. # Apache httpd进程监控shell
  3. # 如果你在使用RHEL / CentOS / Fedora Linux,使用这个重启命令
  4. RESTART="/sbin/service httpd restart"
  5. # 如果你在使用 Debian / Ubuntu Linux,把上面的RHEL的注释掉,换用这个
  6. #RESTART="/etc/init.d/apache2 restart"
  7. #path to pgrep command
  8. PGREP="/usr/bin/pgrep"
  9. # Httpd daemon name,
  10. # Under RHEL/CentOS/Fedora it is httpd
  11. # Under Debian 4.x it is apache2
  12. HTTPD="httpd"
  13. # Debian / Ubuntu Linux 下进程名是apache2
  14. #HTTPD="apache2"
  15. # find httpd pid
  16. $PGREP ${HTTPD}
  17. if [ $? -ne 0 ] # if apache not running
  18. then
  19. # restart apache
  20. $RESTART
  21. fi
复制代码

可以把上面的shell加入crontab,下面是每5钞钟检查一次的crontab命令:

  1. */5 * * * * /path/to/httpdcheck.sh >/dev/null 2>&1
复制代码
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值