netstat -ano|findstr 使用方法

一、查看占用端口 ,得到进程id
netstat -ano|findstr “8080”

1:协议 2:本地地址 3: 外部地址 4: 状态 5: PID
netstat -ano|findstr 使用方法_第1张图片

二、查询进程ID对应的进程名称
tasklist|findstr “12448”

netstat -ano|findstr 使用方法_第2张图片

三、关闭单个进程
taskkill /pid 12448
关闭多个进程:
taskkill /pid pid /pid pid

你可能感兴趣的:(服务器,linux,运维)