[备忘]Windows&Linux上查看端口被什么进程占用|端口占用

Windows上

查看端口占用:

netstat -aon|findstr <端口号>

通过进程ID查询进程信息

tasklist | findstr <上一步查出来的进程号>

图例:

[备忘]Windows&Linux上查看端口被什么进程占用|端口占用_第1张图片

Linux 上

查看端口占用:

netstat -tuln | grep <端口号>
lsof -i:<端口号>
ss -tlnp | grep <端口号>

多种方式,但前提是要安装了相应工具,如:   sudo apt-get install netstat

你可能感兴趣的:(windows,linux,运维,端口占用)