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

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 

 

posted @   豆浆D  阅读(774)  评论(0编辑  收藏  举报
努力加载评论中...
点击右上角即可分享
微信分享提示