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
网友评论