这个问题类似于网络端口打开,但是没有附加进程吗?
我已经尝试了所有内容,查看了日志等等,但找不到任何东西。
我的netstat显示不带pid的TCP侦听端口和UDP端口。当我在lsof中搜索那些端口时,什么也没有出现。
netstat -lntup
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 0.0.0.0:44231 0.0.0.0:* LISTEN -
udp 0 0 0.0.0.0:55234 0.0.0.0:* -
以下命令不显示任何内容:
lsof | grep 44231
lsof | greo 55234
fuser -n tcp 44231
fuser -n udp 55234
重新启动后,除了新的端口号外,那些“相同”的两个连接在那里:
netstat -lntup
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 0.0.0.0:45082 0.0.0.0:* LISTEN -
udp 0 0 0.0.0.0:37398 0.0.0.0:* -
再次,lsof和fuser命令什么也不显示。
有什么想法吗?我应该关心他们吗?