zoukankan      html  css  js  c++  java
  • Jenkins构建shell

    #!/bin/bash
    cd Labwfcm
    git pull
    cd wfcm-api
    mvn clean package
    cd target
    mv wfcm-api.war wfcm-api.war
    scp wfcm-api.war root@101.201.118.192:/opt
    ssh -t -t root@101.201.118.192 > /dev/null 2>&1 << eeooff
    /root/tomcat/tomcat1/bin/shutdown.sh
    /root/tomcat/tomcat2/bin/shutdown.sh
    /root/tomcat/tomcat3/bin/shutdown.sh
    cd /root/tomcat/tomcat1/webapps/
    rm -rf *
    mkdir wfcm-api
    cd wfcm-api
    cp /opt/wfcm-api.war ./
    jar -xvf wfcm-api.war
    rm -f wfcm-api.war
    cd /root/tomcat/tomcat2/webapps/
    rm -rf *
    mkdir wfcm-api
    cd wfcm-api
    cp /opt/wfcm-api.war ./
    jar -xvf wfcm-api.war
    rm -f wfcm-api.war
    cd /root/tomcat/tomcat3/webapps/
    rm -rf *
    mkdir wfcm-api
    cd wfcm-api
    cp /opt/wfcm-api.war ./
    jar -xvf wfcm-api.war
    rm -f wfcm-api.war
    /root/tomcat/tomcat1/bin/startup.sh
    /root/tomcat/tomcat2/bin/startup.sh
    /root/tomcat/tomcat3/bin/startup.sh
    rm -f /opt/wfcm-api.war
    exit
    eeooff
  • 相关阅读:
    小球与盒子的故事
    2020.1.11 考试总结
    P4249 [WC2007]剪刀石头布
    P3825 [NOI2017]游戏
    BZOJ 2238 Mst
    P4240 毒瘤之神的考验
    生成函数(严重残缺)
    Min_25
    P3455 [POI2007]ZAP-Queries
    P3233 [HNOI2014]世界树
  • 原文地址:https://www.cnblogs.com/hero123/p/9541925.html
Copyright © 2011-2022 走看看