码迷,mamicode.com
首页 > 其他好文 > 详细

nginx和keepalive共存亡

时间:2015-10-31 01:48:56      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:sleep

加入nginx宕了,keepalive也跟着自杀

#!/bin/bash
while :
do
nginxpid=`ps -C nginx --no-header |wc -l`
if [ $nginxpid -eq 0 ];then
   /etc/init.d/nginx restart
      sleep 5
        nginxpid=`ps -C nginx --no-header |wc -l`
          if [ $nginxpid -eq 0 ];then
              /etc/init.d/keepalived stop
          fi
fi
sleep 5
done

本文出自 “杜海强” 博客,请务必保留此出处http://dulinux.blog.51cto.com/10803129/1708180

nginx和keepalive共存亡

标签:sleep

原文地址:http://dulinux.blog.51cto.com/10803129/1708180

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!