查看端口进程ID 删除进程 win linux
linux :
netstat -ntulp | grep 端口号
执行上一句,得到进程ID
kill -9 进程ID
win:
netstat -aon|findstr 端口号
执行上一句,得到进程ID
taskkill /f /pid 进程ID
作者:人间春风意
扫描左侧的二维码可以赞赏

本作品采用署名-非商业性使用-禁止演绎 4.0 国际 进行许可。
linux :
netstat -ntulp | grep 端口号
执行上一句,得到进程ID
kill -9 进程ID
win:
netstat -aon|findstr 端口号
执行上一句,得到进程ID
taskkill /f /pid 进程ID
作者:人间春风意
扫描左侧的二维码可以赞赏

本作品采用署名-非商业性使用-禁止演绎 4.0 国际 进行许可。