Mac系统查看端口占用的进程
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
概要
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协议,端口号为指定端口号的句柄。
参考
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 年前
更多推荐
已为社区贡献5条内容
所有评论(0)