尝试在端口80上启动XAMPP时遇到问题,因为端口80正由另一个服务使用。
我不想将默认端口更改为XAMPP。我需要找出使用端口80的服务并停止它。
我试过这个命令
netstat -anb
但它没有给我任何有价值的信息
这是我收到的端口80相关信息
Active Connections
Proto Local Address Foreign Address State
TCP 0.0.0.0:80 0.0.0.0:0 LISTENING
Can not obtain ownership information
TCP [::]:80 [::]:0 LISTENING
Can not obtain ownership information
我也试过
netstat -aon
对于使用端口80的线路,我给了一个pid = 4。 我试图用
杀死它taskkill / pid 4
但即使以管理员身份运行cmd,我也会收到此错误。
C:\WINDOWS\system32>taskkill /pid 4
ERROR: The process with PID 4 could not be terminated.
Reason: Access is denied.
我更改了Skype使用的端口,因此它不再使用端口80。
如何找出使用端口80的服务?
以前我的笔记本电脑上运行了AppServ,但我卸载了它。我不确定这是否还是个问题。