lsof 可以显示 alpine linux 上的开放端口吗?

Can lsof show open ports on alpine linux?

我在 alpine linux 中有一个 spring 启动应用程序 运行 侦听端口 8080。但是,当我这样做时:

$ lsof
$ lsof -i 8080

它不显示打开的端口。你知道我做错了什么吗?

似乎 alpine linux 上的 lsof 似乎不支持任何论点。它总是显示相同的输出 - 只是似乎忽略了 -i.

谢谢。

lsof, not from busybox. Busyboxs lsof is just only simple 安装 lsof

apk add lsof

应该修复它。