Why network port is open but no process attached?(为什么端口被打开,但是没有进程号)

简介:

When I check my system today, I noticed a weird output from netstat’s output,

joseph# sudo netstat -lnpt | grep 60023
tcp        0      0 0.0.0.0:60023               0.0.0.0:*                   LISTEN      -

There is no process attached to an open port. I used different command to try to address the process that attaches to this port, but all failed.

After searching around, I realized it’s an port opened by kernel, that’s why it won’t show up with program name. For the port like this, it may relate to NFS and OCFS stuff, or something like that, or it could be a kernel bug.  If you need to find more details, check kernel logs for OOPS and bug.

A nmap scan help me confirm my guess,

 

Nmap finished: 1 IP address (1 host up) scanned in 6.154 seconds

本文转自博客园知识天地的博客,原文链接:Why network port is open but no process attached?(为什么端口被打开,但是没有进程号),如需转载请自行联系原博主。


相关文章
|
3月前
|
Windows
windows环境下根据端口号查询进程编号并杀掉此进程
windows环境下根据端口号查询进程编号并杀掉此进程
|
5月前
|
Windows
Windows查看端口占用以及关闭相应的进程
Windows查看端口占用以及关闭相应的进程
132 0
|
2月前
window查看端口占用并关闭对应进程
window查看端口占用并关闭对应进程
|
6月前
|
Windows
windows系统 如何查看端口占用情况并关闭占用的进程?
windows系统 如何查看端口占用情况并关闭占用的进程?
216 0
|
3月前
|
Linux
遇到Linux 端口占用时如何查看并杀掉服务进程
遇到Linux 端口占用时如何查看并杀掉服务进程
|
4月前
|
网络协议 网络安全
百度搜索:蓝易云【通过netstat命令查看进程与端口的对应关系?】
通过netstat命令,你可以查看当前系统上所有的网络连接信息,并通过PID/Program name列确定与每个连接关联的进程。这对于识别占用特定端口的进程非常有用。
35 1
|
5月前
|
Linux
linux中根据进程名查端口号
linux中根据进程名查端口号
|
5月前
idea关闭但进程还在运行端口被占用问题解决
idea关闭但进程还在运行端口被占用问题解决
|
5月前
|
SQL Windows
Windows 下80端口被进程 System & PID=4 占用的解决方法
Windows 下80端口被进程 System & PID=4 占用的解决方法
177 0
|
6月前
|
Linux
Linux中查看端口被哪个进程占用、进程调用的配置文件、目录等
Linux中查看端口被哪个进程占用、进程调用的配置文件、目录等
111 0

相关实验场景

更多