美文网首页
linux shell 脚本服务的停止

linux shell 脚本服务的停止

作者: iarchitect | 来源:发表于2019-07-06 10:31 被阅读0次

    stop.sh

    #!/bin/bash
    
    #jps -l 列出pid和java完整主类名
    #jps -v 列出pid和jvm参数
    #jps -m 列出应用程序参数
    #awk '{print $1}' 获取第一个参数 也就是pid
    
    for STOPPID in $(jps -lvm |grep 你要停止的服务名 |awk '{print $1}')
    do
    
    #if  [ -n $string  ]             如果string 非空(非0),返回0(true)  
    
    if [ -n "${STOPPID}" ]; then
            echo stoppid is ${STOPPID}
            kill -9 ${STOPPID}
    fi
    done
    

    相关文章

      网友评论

          本文标题:linux shell 脚本服务的停止

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