Microsoft-HTTPAPI/2.0 使用的端口 9001

Microsoft-HTTPAPI/2.0 使用的端口 9001

端口 9001 似乎被 Microsoft-HTTPAPI/2.0 使用。我在浏览器中执行以下http://本地主机:9001/

HTTP/1.1 404 Not Found
Content-Type: text/html; charset=us-ascii
Server: Microsoft-HTTPAPI/2.0
Date: Thu, 09 Apr 2020 08:10:11 GMT
Connection: close
Content-Length: 315

使用netstat -aonb | grep 9001

  TCP    0.0.0.0:9001           0.0.0.0:0              LISTENING       4
  TCP    [::]:9001              [::]:0                 LISTENING       4
  TCP    [::1]:9001             [::1]:50916            TIME_WAIT       0
  TCP    [::1]:9001             [::1]:50957            TIME_WAIT       0

所以 PID 4 是 ntoskrnl.exe。

我检查了 Internet 信息服务已关闭

在此处输入图片描述

我该如何进一步调查?感谢您的帮助

答案1

在 Daniel B 发表评论后,我做了以下事情:

$ netsh http show servicestate                                                      

Snapshot of HTTP service state (Server Session View):                               
-----------------------------------------------------                               

Server session ID: FF00000520000001                                                 
    Version: 2.0                                                                    
    State: Active                                                                   
    Properties:                                                                     
        Max bandwidth: 4294967295                                                   
        Timeouts:                                                                   
            Entity body timeout (secs): 120                                         
            Drain entity body timeout (secs): 120                                   
            Request queue timeout (secs): 120                                       
            Idle connection timeout (secs): 120                                     
            Header wait timeout (secs): 120                                         
            Minimum send rate (bytes/sec): 150                                      
    URL groups:                                                                     
    URL group ID: FE00000540000001                                                  
        State: Active                                                               
        Request queue name: Request queue is unnamed.                               
        Properties:                                                                 
            Max bandwidth: inherited                                                
            Max connections: inherited                                              
            Timeouts:                                                               
                Timeout values inherited                                            
            Number of registered URLs: 1                                            
            Registered URLs:                                                        
                HTTP://+:9001/IGCC/SERVICE/                                         

Request queues:                                                                     
    Request queue name: Request queue is unnamed.                                   
        Version: 2.0                                                                
        State: Active                                                               
        Request queue 503 verbosity level: Basic                                    
        Max requests: 1000                                                          
        Number of active processes attached: 1                                      
        Process IDs:                                                                
            5592      

现在我得到了罪魁祸首进程 ID:5592,IGGC/Service 代表
英特尔图形命令中心

相关内容