美文网首页
Jenkins发布后台应用

Jenkins发布后台应用

作者: 爱彩虹的枫叶 | 来源:发表于2020-02-28 09:46 被阅读0次

    构建后,添加步骤Send files or execute commands over SSH,Exec command:

    #!/bin/bash

    第一步,杀死正运行的进程

    ps -aux | grep /path.to.app/ | grep -v grep | awk '{print $2}' > 1.txt

    for line in `cat 1.txt`

    do

        kill -9 $line

    done

    第二步, 更新程序

    rm -f 1.txt

    cp ...

    第三部,执行启动脚本

    nohup ./startup.sh

    打开高级选项,选中 Exec in pty

    相关文章

      网友评论

          本文标题:Jenkins发布后台应用

          本文链接:https://www.haomeiwen.com/subject/xldkhhtx.html