首页 > 系统服务 > 详细

shell编程:利用脚本实现nginx的守护自动重启

时间:2019-10-23 09:23:15      阅读:116      评论:0      收藏:0      [点我收藏+]

nginx_daemon.sh

#!/bin/bash
#

this_pid=$$

while true
do
ps -ef | grep nginx | grep -v grep | grep -v $this_pid &> /dev/null

if [ $? -eq 0 ];then
          echo "nginx is ok"
          sleep 3
else
          systemctl start nginx
          echo "nginx is down,starting it..."
fi
done

执行脚本

后台执行脚本并输出日志到/tmp/nginx_daemon.out

sh nginx_daemon.sh > /tmp/nginx_daemon.out 2>&1 &sh nginx_daemon.sh &   不指定文件的话为当前目录的nohup.out 文件中)

查看日志

tail -f /tmp/nginx_daemon.out

查看任务

查看任务。

jobs 

关闭任务

fg %n 

 

shell编程:利用脚本实现nginx的守护自动重启

原文:https://www.cnblogs.com/soymilk2019/p/11723708.html

(1)
(1)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!