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 

 

相关文章:

  • 2021-08-11
  • 2022-12-23
  • 2022-01-25
  • 2021-12-04
  • 2021-11-12
  • 2022-01-09
  • 2021-09-02
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-24
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案