月薪1800块的站长
不打算了解一下吗

宝塔下定时重启nginx,监控nginx宕机重启shell

定时重启

/etc/init.d/nginx restart

宕机检测重启

ps=`ps -efl|grep nginx|grep -v $0|grep -v grep|wc -l`
if [ $ps -eq 0 ];
then
    echo -e "\n$(date '+%Y-%m-%d %H:%M:%S') start "
    /etc/init.d/nginx start
    echo "$(date '+%Y-%m-%d %H:%M:%S') done"
else
    echo $(date +%F%n%T) "nginx正在运行..."
    exit 0;
fi

 

赞(0)
分享到: 更多 (0)