Mac系统查看端口占用的进程

概要

Mac系统查看端口占用的进程

博客

原帖收藏于IT老兵博客

前言

在Linux下,查看占用端口的进程可以使用netstat -antpl | grep port,但是在Mac下,这个netstat的功能缩水了(很多命令在Mac下都缩水了),所以怎么查看占用端口的进程呢?

正文

搜索了一遍,感觉可以使用lsof -i tcp:{port} 这个命令来实现,{port} 表示端口号。

1
2
3
4
-i [i]   selects the listing of files any of whose Internet address
matches the address specified in i. If no address is
specified, this option selects the listing of all Internet
and x.25 (HP-UX) network files.

查看一下参考中的手册,-i 的参数是用于检索Internet相关的信息,例如地址、协议等,上面那个用法就是检索tcp协议,端口号为指定端口号的句柄。

参考

http://man7.org/linux/man-pages/man8/lsof.8.html