zoukankan      html  css  js  c++  java
  • linux_java_同时启动三个项目脚本

    test.sh

    --------------------------------------------------------------------------------------------------------------------------------------

    #!/bin/sh
    while :
    do
    run1=$(ps -ef |grep 'sxnx-sms-8081' |grep -v "grep")
    run2=$(ps -ef |grep 'sxnx-sms-8082' |grep -v "grep")
    run3=$(ps -ef |grep 'sxnx-sms-8083' |grep -v "grep")
    if [ "$run1" ] ; then
    echo "The sxnx-sms-8081 service is alive!"
    else
    echo "The sxnx-sms service was shutdown!"
    echo "Starting service sxnx-sms-8081..."
    nohup java -jar $PWD/sxnx-sms-8081.jar&
    echo "The service sxnx-sms-8081 was started!"
    fi
    if [ "$run2" ] ; then
    echo "The sxnx-sms-8082 service is alive!"
    else
    echo "The sxnx-sms service was shutdown!"
    echo "Starting service sxnx-sms-8082..."
    nohup java -jar $PWD/sxnx-sms-8082.jar&
    echo "The service sxnx-sms-8082 was started!"
    fi
    if [ "$run3" ] ; then
    echo "The sxnx-sms-8083 service is alive!"
    else
    echo "The sxnx-sms service was shutdown!"
    echo "Starting service sxnx-sms-8083..."
    nohup java -jar $PWD/sxnx-sms-8083.jar&
    echo "The service sxnx-sms-8083 was started!"
    fi
    sleep 10
    done

    =======================================================================================================================

    去掉while循环,只执行一次

    #!/bin/sh
    run1=$(ps -ef |grep 'sxnx-sms-8081' |grep -v "grep")
    run2=$(ps -ef |grep 'sxnx-sms-8082' |grep -v "grep")
    run3=$(ps -ef |grep 'sxnx-sms-8083' |grep -v "grep")
    if [ "$run1" ] ; then
    echo "The sxnx-sms-8081 service is alive!"
    else
    echo "The sxnx-sms service was shutdown!"
    echo "Starting service sxnx-sms-8081..."
    nohup java -jar $PWD/sxnx-sms-8081.jar&
    echo "The service sxnx-sms-8081 was started!"
    fi
    if [ "$run2" ] ; then
    echo "The sxnx-sms-8082 service is alive!"
    else
    echo "The sxnx-sms service was shutdown!"
    echo "Starting service sxnx-sms-8082..."
    nohup java -jar $PWD/sxnx-sms-8082.jar&
    echo "The service sxnx-sms-8082 was started!"
    fi
    if [ "$run3" ] ; then
    echo "The sxnx-sms-8083 service is alive!"
    else
    echo "The sxnx-sms service was shutdown!"
    echo "Starting service sxnx-sms-8083..."
    nohup java -jar $PWD/sxnx-sms-8083.jar&
    echo "The service sxnx-sms-8083 was started!"
    fi


  • 相关阅读:
    再也不用为word 中表达式的上标和下标发愁了
    创建链接
    ps钢笔工具隐藏的知识。
    学Ps个人遇到的小细节
    新手琢磨ps,学问深着呢。。
    数据库2012终于知道数据库攻击注入参数
    想脱离鼠标,不想要鼠标就只想用键盘完成所有编程,你说可能吗?
    vs2013中的快捷键
    如何在C/C++中动态分配二维数组【转载】
    转载:C++的那些事:表达式与语句
  • 原文地址:https://www.cnblogs.com/curedfisher/p/13039872.html
Copyright © 2011-2022 走看看