找出占用系统网络端口的根源
在windows 环境下面,从开始->运行,输入cmd,进入dos界面,然后输入如下命令并运行。
view plaincopy to clipboardprint?
C:\Documents and Settings\qingxu>netstat -aon|findstr "1371"
TCP 10.5.35.151:1371 203.208.37.104:80 CLOSE_WAIT 2160
C:\Documents and Settings\qingxu>netstat -aon|findstr "1371"
TCP 10.5.35.151:1371 203.208.37.104:80 CLOSE_WAIT 2160
可以看到,运行命令后出现了一行记录,我们关注的是最后一个字段,对,就是2160,它表示占用这个端口的进程号。
有了进程号之后,继续输入如下命令并运行
view plaincopy to clipboardprint?
C:\Documents and Settings\qingxu>tasklist|findstr "2160"
Fiddler.exe 2160 Console 0 150,648 K
C:\Documents and Settings\qingxu>tasklist|findstr "2160"
Fiddler.exe 2160 Console 0 150,648 K
可以看到,是fiddler.exe这个程序在运行。之后你就可以关闭掉这个程序即解决问题,当然你也可以换端口号。