概要

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

博客

原帖收藏于IT老兵博客

前言

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

正文

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

-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

GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e added ecosystem file for PM2 4 年前
5def40a3 Add host customization support for the NodeJS version 4 年前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐