操作系统:Windows 10 正在使用的应用程序:Vuze
将传入端口号启用为“ 80 ”以支持 HTTP 播种。
自从设置了Zookeeper和Apache Kafka。我收到此“绑定”错误。
我在任务管理器上检查了 PID,并在 Powershell 上运行了以下过程:
$proc = @{};
Get-Process | ForEach-Object { $proc.Add($_.Id, $_) };
netstat -aon | Select-String "\s*([^\s]+)\s+([^\s]+):([^\s]+)\s+([^\s]+):([^\s]+)\s+([^\s]+)?\s+([^\s]+)" | ForEach-Object {
$g = $_.Matches[0].Groups;
New-Object PSObject |
Add-Member @{ Protocol = $g[1].Value } -PassThru |
Add-Member @{ LocalAddress = $g[2].Value } -PassThru |
Add-Member @{ LocalPort = [int]$g[3].Value } -PassThru |
Add-Member @{ RemoteAddress = $g[4].Value } -PassThru |
Add-Member @{ RemotePort = $g[5].Value } -PassThru |
Add-Member @{ State = $g[6].Value } -PassThru |
Add-Member @{ PID = [int]$g[7].Value } -PassThru |
Add-Member @{ Process = $proc[[int]$g[7].Value] } -PassThru;
#} | Format-Table Protocol,LocalAddress,LocalPort,RemoteAddress,RemotePort,State -GroupBy @{Name='Process';Expression={$p=$_.Process;@{$True=$p.ProcessName; $False=$p.MainModule.FileName}[$p.MainModule -eq $Null] + ' PID: ' + $p.Id}} -AutoSize
} | Sort-Object PID | Out-GridView
任何帮助将非常感激。我不是端口方面的专家。
我是否应该期望 Vuze 的 PID在 Powershell 输出网格上为“已建立”或“侦听”?
有没有办法为 Vuze 优先考虑端口 80?显示 PID 0 / PID 4(系统)。除了重新安装操作系统之外,有什么快速解决方法吗?