• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    自动重启服务的shell脚本代码
    复制代码 代码如下:

    #!/bin/bash
    if [ ! -f /tmp/down_count ];then
    echo "0" gt; /tmp/down_count
    fi
    curl -I tomcat-host -o "/tmp/status" gt;/dev/null 2gt;1
    code=`awk 'NR==1 {print $2}' /tmp/status`
    if [ "$[code]" -ge 500 ];then
    down=`expr $(cat /tmp/down_count) + 1`
    echo "$down" gt; /tmp/down_count
    if [ "$down" -gt 3 ];then
    if [ ! -f "/tmp/restart_count" ];then
    echo "0" gt; /tmp/restart_count
    fi
    restart_count=`expr $(cat /tmp/restart_count) + 1`
    echo "$restart_count" gt; /tmp/restart_count
    if [ "$restart_count" -le 2 ];then
    echo "tomcat down at `date`" gt;gt; /tmp/down_info
    /etc/init.d/tomcat6 restart
    fi
    fi
    else
    echo "0" gt; /tmp/down_count
    echo "0" gt; /tmp/restart_count
    fi


    脚本实现了,当检测网页状态码大于等于500连续出现3次数,自动重启tomcat6,且只连续重启两次。
    您可能感兴趣的文章:
    • 分享个简易版Linux服务器初始化Shell脚本
    • Linux shell脚本基础学习详细介绍(完整版)
    • 利用Shell脚本实现远程MySQL自动查询
    • linux服务器安全加固shell脚本代码
    • 用shell脚本实现自动切换内网和外网实现高可用
    • 如何调试Linux shell脚本
    • linux下监视进程 崩溃挂掉后自动重启的shell脚本
    • linux shell脚本基础知识学习
    • 学习shell脚本之前的基础知识[图文]
    • linux中mysql备份shell脚本代码
    • Linux下使用Shell脚本实现ftp的自动上传下载的代码小结
    • 获取两个日期间隔时间的shell脚本代码
    • 判断文件是否存在的shell脚本代码
    • kill特定进程的shell脚本代码
    • 查找目录下同名但不同后缀名文件的shell脚本代码
    • 在指定目录查找指定后缀文件的shell脚本代码
    • 统计网卡流量的两段shell脚本(使用ifconfig)
    • shell脚本作为保证PHP脚本不挂掉的守护进程实例分享
    上一篇:linux shell中的比较符号与特殊符号介绍
    下一篇:linux下监视进程 崩溃挂掉后自动重启的shell脚本
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    自动重启服务的shell脚本代码 自动,重启,服务,的,shell,