Apache环境下进程检查脚本

在实际生产环境中使用比较多web环境一般是Apache,平时为了确保Apache的正常运行,一定会对Apache进程监控,但是一般情况下效率并不是很好,为了确保生产环境中的业务正常运行或者是故障快速处理可以利用检查系统中是否有httpd的tcp连接来判断,为此就写了一个检查Apache的脚本。

#!/bin/bash
#use monitor httpd status
#chmod 700
#check_httpd.sh version 1.0
#2016.11.28 jim
httpd_port=`netstat -tuln|awk '{print $4}'|grep ':80'`
apache_base_bin=/usr/local/apache/bin
log_dir=/data/backup/logs/apache
 
if [ ! -e "$log_dir" ];then
        mkdir -p $log_dir
fi
 
if [ "$httpd_port" == "" ];then
        $apache_base_bin/apachectl restart
        echo "apache restart `date +"%Y-%m-%d %H:%M:%S"`"|tee -a $log_dir/`date +"%Y%m%d-%H:%M"`.log
fi

然后再在crontab中添加定时一分钟检查一次

*/1 * * * * /usr/local/scripts/check_httpd.sh

当然也可以通过这个脚本定时检查一些需要tcp或者是udp连接的服务。

下面关于LAMP相关的内容你可能也喜欢

LAMP平台安装Xcache和Memcached加速网站运行 

CentOS 7下搭建LAMP平台环境 

CentOS 6.5系统安装配置LAMP(Apache+PHP5+MySQL)服务器环境

CentOS 7.2 yum安装LAMP环境 

Ubuntu 14.04 配置 LAMP+phpMyAdmin PHP(5.5.9)开发环境 

Ubuntu 14.10 下安装 LAMP 服务图文详解 

LAMP结合NFS构建小型博客站点 

CentOS7下安装部署LAMP环境 

Ubuntu Server 14.04 LTS下搭建LAMP环境图文详解 

Ubuntu Server 16.04下配置LAMP环境

Ubuntu 16.04搭建LAMP开发环境

Ubuntu 16.04 LTS安装Apache2+PHP7.0+MySQL+phpMyAdmin图文详解 

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/30a2faf4972cf376e4f74b6596098a6c.html