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 

猜你喜欢

转载自www.cnblogs.com/soymilk2019/p/11723708.html