sfsoul / personalBlog

思考与总结
MIT License
1 stars 0 forks source link

Mac 下查看端口占用情况 #20

Open sfsoul opened 4 years ago

sfsoul commented 4 years ago

Mac 下可以使用 lsof(list open files)来查看端口占用情况。

使用 lsof 列举所有占用的端口列表:

lsof

使用 less 可以用于分页展示:

lsof | less

使用 -i 查看某个端口是否被占用:若端口被占用,则会返回相关信息;若没被占用,则不返回任何信息。

lsof -i:port

// 可通过增加过滤条件来展示本机监听的端口
lsof -i:port | grep LISTEN