Linux通过端口获取进程pid


背景

在日常工作或者运维中经常会用到一些bash脚本帮忙,这里记录一种通过搜索端口号获取linux中监听此端口的进程进程pid的脚本

代码

port=8888
pid=$(netstat -nlp | grep :$port | awk '{print $7}' | awk -F"/" '{print $1}');
if [ -n "$pid" ]; then
        kill -9 $pid  #此处可以是对此进程的任意操作
fi

原创文章,作者:,如若转载,请注明出处:https://blog.ytso.com/tech/aiops/268269.html

(0)
上一篇 2022年6月19日 05:09
下一篇 2022年6月19日 05:09

相关推荐

发表回复

登录后才能评论