kathyrani  

1、Windows平台

在windows命令行窗口下执行:

C:\>netstat -aon|findstr "80"

TCP     127.0.0.1:80         0.0.0.0:0               LISTENING      4

端口被进程号为4的进程占用,继续执行下面命令:

C:\>tasklist|findstr "4"

System                     4 Service                0     1,256 K

 

2.去任务管理器中

查看->选择列->勾选“pid进程标识符”->确定

点击pid进行排序,此时发现占用pid4的System的描述为NT kernel & System

 

3.解决办法:

在cmd中输入

1)sc config http stat = demand

按照下面步骤禁用http.sys:

2) net stop http

3) Sc config http start= disabled

 

ok了 

 

posted on 2012-05-30 13:56  kathyrani  阅读(748)  评论(0编辑  收藏  举报