Windows和Linux查看端口占用

Posted blog of asml

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Windows和Linux查看端口占用相关的知识,希望对你有一定的参考价值。

Windows方法

TCP

netstat -aon|findstr "TCP"|findstr "LISTENING"|findstr ":135[^0123456789]"

UDP

netstat -aon|findstr "UDP"|findstr ":5353[^0123456789]"

最后面的数字为PID

接下来只要在tasklist里找PID一样的程序就行了

tasklist|findstr

Linux方法

lsof -i -P -n|grep -v ESTABLISHED

以上是关于Windows和Linux查看端口占用的主要内容,如果未能解决你的问题,请参考以下文章

linux与windows查看占用端口的进程ID并杀死进程

Windows与Linux下查看端口占用与结束进程命令

Windows与Linux下查看端口占用与结束进程命令

开发问题在windows和linux端口占用问题

Linux 查看端口占用情况

windows怎么查看端口是不是被占用