129

我的服务在经典启动时崩溃:

java.rmi.server.ExportException: Listen failed on port: 9999

我怎样才能找到杀死它的过程?

4

7 回答 7

247

只需打开一个命令外壳并输入(假设您的端口是 123456):

netstat -a -n -o | find "123456"

你会看到你需要的一切。

标题是:

 Proto  Local Address          Foreign Address        State           PID
 TCP    0.0.0.0:37             0.0.0.0:0              LISTENING       1111
于 2013-04-11T15:24:06.663 回答
100

查找在 Windows 上使用端口的进程的 PID (例如端口:“9999”)

netstat -aon | find "9999"

-a显示所有连接和侦听端口。

-o显示与每个连接关联的拥有进程 ID。

-n以数字形式显示地址和端口号。

输出:

TCP    0.0.0.0:9999       0.0.0.0:0       LISTENING       15776

然后通过PID杀死进程

taskkill /F /PID 15776

/F- 指定强制终止进程。

注意:您可能需要额外的权限(由管理员运行)才能杀死某些进程

于 2016-05-13T16:40:14.537 回答
16

命令:

netstat -aon | findstr 4723

输出:

TCP    0.0.0.0:4723           0.0.0.0:0                LISTENING       10396

for现在使用Windows中的命令剪切进程 ID“10396” 。

命令:

for /f "tokens=5" %a in ('netstat -aon ^| findstr 4723') do @echo %~nxa

输出:

10396

如果你想削减第 4 个数值的意思是“LISTENING”,那么在 Windows 中使用命令。

命令:

for /f "tokens=4" %a in ('netstat -aon ^| findstr 4723') do @echo %~nxa

输出:

聆听

于 2018-05-25T07:10:42.003 回答
9

如果您想以编程方式执行此操作,您可以使用 PowerShell 脚本中提供的一些选项,如下所示:

$processPID =  $($(netstat -aon | findstr "9999")[0] -split '\s+')[-1]
taskkill /f /pid $processPID

然而; 请注意,您越准确,您的 PID 结果就越精确。如果您知道端口应该在哪个主机上,则可以缩小很多范围。netstat -aon | findstr "0.0.0.0:9999"只会返回一份申请,而且很可能是正确的一份。仅搜索端口号可能会导致您返回恰好包含9999在其中的进程,如下所示:

TCP    0.0.0.0:9999                        0.0.0.0:0       LISTENING       15776
UDP    [fe80::81ad:9999:d955:c4ca%2]:1900  *:*                             12331

最有可能的候选人通常首先结束,但如果进程在您运行脚本之前结束,您可能会以 PID 12331 结束并杀死错误的进程。

于 2017-11-09T13:19:37.273 回答
5

在摆弄了一些脚本之后,我开始了这个动作。将其复制并保存在 .bat 文件中:

FOR /F "usebackq tokens=5" %%i IN (`netstat -aon ^| find "3306"`) DO taskkill /F /PID %%i

在需要空闲的端口号中更改“查找“3306”。然后以管理员身份运行该文件。它将杀死在该端口上运行的所有进程。

于 2016-06-24T07:52:08.857 回答
2

PowerShell(与核心兼容)单行来简化复制粘贴场景:

netstat -aon | Select-String 8080 | ForEach-Object { $_ -replace '\s+', ',' } | ConvertFrom-Csv -Header @('Empty', 'Protocol', 'AddressLocal', 'AddressForeign', 'State', 'PID') | ForEach-Object { $portProcess = Get-Process | Where-Object Id -eq $_.PID; $_ | Add-Member -NotePropertyName 'ProcessName' -NotePropertyValue $portProcess.ProcessName; Write-Output $_ } | Sort-Object ProcessName, State, Protocol, AddressLocal, AddressForeign | Select-Object  ProcessName, State, Protocol, AddressLocal, AddressForeign | Format-Table

输出:

ProcessName State     Protocol AddressLocal AddressForeign
----------- -----     -------- ------------ --------------
System      LISTENING TCP      [::]:8080    [::]:0
System      LISTENING TCP      0.0.0.0:8080 0.0.0.0:0

相同的代码,对开发人员友好:

$Port = 8080

# Get PID's listening to $Port, as PSObject
$PidsAtPortString = netstat -aon `
  | Select-String $Port
$PidsAtPort = $PidsAtPortString `
  | ForEach-Object { `
      $_ -replace '\s+', ',' `
  } `
  | ConvertFrom-Csv -Header @('Empty', 'Protocol', 'AddressLocal', 'AddressForeign', 'State', 'PID')

# Enrich port's list with ProcessName data
$ProcessesAtPort = $PidsAtPort `
  | ForEach-Object { `
    $portProcess = Get-Process `
      | Where-Object Id -eq $_.PID; `
    $_ | Add-Member -NotePropertyName 'ProcessName' -NotePropertyValue $portProcess.ProcessName; `
    Write-Output $_;
  }

# Show output
$ProcessesAtPort `
  | Sort-Object    ProcessName, State, Protocol, AddressLocal, AddressForeign `
  | Select-Object  ProcessName, State, Protocol, AddressLocal, AddressForeign `
  | Format-Table
于 2019-10-26T17:58:41.970 回答
-2

这有助于使用端口号查找 PID。

lsof -i tcp:port_number
于 2018-04-10T03:54:15.587 回答