为了使用apache ab 的测试功能,安装Apache HTTP Server 2.2.14,安装发现80端口被占用,由于我的tomcat使用8080,resin使用8088。查看什么程序占用了80端口,把进程kill掉
 
1、Windows平台
在windows命令行窗口下执行:
D:\>netstat -aon|findstr "80"
 
 TCP    0.0.0.0:80             0.0.0.0:0              LISTENING       2608
 
端口被进程号为2608的进程占用,继续执行下面命令:
D:\>tasklist|findstr "2608"
Thunder5.exe                2608 Console                 0     26,892 K
 
杀之,apache server就能正常启动了。