转自 http://hi.baidu.com/sheshi37c/blog/item/27417e1ed96942fc1bd57699.html
我的机子配置 2G内存
1:安装好apache和nginx。它们共用80端口(哈哈,当然修改端口是很简单的),apache安装在 /opt/httpd目录下,nginx安装在/opt/nginx中。
2:安装好webbench(很简单,下载解压后,进入目录,make ,make install即可进行安装),用于压力测试。
3:cd /opt/httpd/bin
./apachectl start
netstat -antl | grep 80 //用以确认该服务是否真正启动!以下是测试部分:
[root@*bin]# webbench -c 5000 -t 60 http://127.0.0.1/apache_pb.png Webbench - Simple Web Benchmark 1.5 Copyright (c) Radim Kolar 1997-2004, GPL Open Source Software.
Benchmarking: GET http://127.0.0.1/apache_pb.png 5000 clients, running 60 sec.
Speed=208453 pages/min, 5741557 bytes/sec. Requests: 208279 susceed, 174 f ailed .
|
-t 60 表示在60秒的时间内,-c 表示并发数。红色字体部分为性能表示。
很直观的一点就是说有174个响应失败。
4:为了测试的准确性,我
cp /opt/httpd/htdocs/apache_pb.png /opt/nginx/html/ //复制文件
|
接着关闭apache服务器, 以nginx来测试(我必须将其关闭,因为共用80端口,不关闭, 我启动不了nginx)
[root@qingheliu bin]# pkill httpd //将服务kill掉 [root@qingheliu bin]# netstat -antl | grep 80 //确认apache是否被kill [root@qingheliu bin]# /opt/nginx/sbin/nginx //启动nginx [root@qingheliu bin]# netstat -antl | grep 80 //确认是否正常启动 tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN //压力测试:
[*]# webbench -c 5000 -t 60 http://127.0.0.1/apache_pb.png Webbench - Simple Web Benchmark 1.5 Copyright (c) Radim Kolar 1997-2004, GPL Open Source Software.
Benchmarking: GET http://127.0.0.1/apache_pb.png 5000 clients, running 60 sec.
Speed=325235 pages/min, 8656698 bytes/sec. Requests: 325235 susceed, 0 failed. [root@qingheliu bin]#
|
比较红色字体的部分。事实胜过雄辩,显然nginx服务器功能更好!