ab(ApacheBench)是Apache自帶的超文本傳輸協(xié)議(HTTP)性能測試工具。 其設計意圖是描繪當前所安裝的Apache的執(zhí)行性能, 主要是顯示你安裝的Apache每秒可以處理多少個請求。
2 使用
2.1 安裝
Apache服務器套件自帶ab,只要安裝Apache即可,無需另行安裝ab。ab位于%ApacheHome%/bin目錄下(“%ApacheHome%”為Aapche安裝路徑),你也可以把ab.exe文件copy出來,獨立使用。
2.2 參數(shù)列表
-A auth-username:password
:
"隔開,并將被以base64編碼形式發(fā)送。無論服務器是否需要(即是否發(fā)送了401認證需求代碼),此字符串都會被發(fā)送。 -c concurrency
-C cookie-name=value
Cookie:
"頭行。其典型形式是 name=value
的一個參數(shù)對。此參數(shù)可以重復。 -d
-e csv-file
-g gnuplot-file
-h
-H custom-header
"Accept-Encoding: zip/zop;8bit"
)。 -i
HEAD
請求,而不是GET
。 -k
-n requests
-p POST-file
-P proxy-auth-username:password
:
"隔開,并將被以base64編碼形式發(fā)送。無論服務器是否需要(即是否發(fā)送了407代理認證需求代碼),此字符串都會被發(fā)送。 -q
ab
每處理大約10%或者100個請求時,會在stderr
輸出一個進度計數(shù)。此 -q
標記可以屏蔽這些信息。 -s
ab -h
會告訴你)使用了SSL的受保護的https
,而不是http
協(xié)議的時候。此功能是實驗性的,最好不要用。 -S
-t timelimit
-n 50000
"。它可以使對服務器的測試限制在一個固定的總時間以內(nèi)。默認時,沒有時間限制。 -T content-type
-v verbosity
4
或更大值會顯示頭信息,3
或更大值可以顯示響應代碼(404,200等),2
或更大值可以顯示警告和其他信息。 -V
-w
-x <table>-attributes
<table>
屬性的字符串。此屬性被填入<table 這里 >
。 -X proxy[:port]
-y <tr>-attributes
<tr>
屬性的字符串。 -z <td>-attributes
<td>
屬性的字符串。 以上參數(shù)最常用的是-n 在測試會話中所執(zhí)行的請求個數(shù);和-c 一次同時產(chǎn)生的并發(fā)請求個數(shù)。
2.3 實例
假設我們要測試一下本網(wǎng)站,其中一個性能測試用例是:“同時處理50個并發(fā)請求并運行 100 次index.php 首頁”,我們可以在cmd shell中輸入 ab -n 1000 -c 50 http://www.dgkai.cn/index.php,運行結束后,ab會自動顯示測試結果,如下:
C:\wamp\Apache2\bin>ab -n 100 -c 50 http://www.dgkai.cn/index.php
This is ApacheBench, Version 2.0.40-dev <$Revision: 1.146 $> apache-2.0
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Copyright 2006 The Apache Software Foundation, http://www.apache.org/
Benchmarking www.dgkai.cn (be patient).....done
Server Software: Apache/2.0.52
Server Hostname: www.dgkai.cn
Server Port: 80
Document Path: /index.php
Document Length: 21380 bytes
Concurrency Level: 50
Time taken for tests: 66.328125 seconds
Complete requests: 100
Failed requests: 15
(Connect: 0, Length: 15, Exceptions: 0)
Write errors: 0
Non-2xx responses: 15
Total transferred: 1856980 bytes
HTML transferred: 1822145 bytes
Requests per second: 1.51 [#/sec] (mean)
Time per request: 33164.063 [ms] (mean)
Time per request: 663.281 [ms] (mean, across all concurrent requests)
Transfer rate: 27.33 [Kbytes/sec] received
Connection Times (ms)
min mean[+/-sd] median max
Connect: 31 41 8.5 46 62
Processing: 32 20242 9776.5 22015 43890
Waiting: 31 1637 1327.6 1156 6078
Total: 78 20283 9778.3 22046 43921
Percentage of the requests served within a certain time (ms)
50% 22046
66% 24812
75% 26656
80% 27796
90% 30421
95% 30734
98% 31921
99% 43921
100% 43921 (longest request)
C:\wamp\Apache2\bin>
以上結果指出,在并發(fā)50個請求的情況下,完成100次的訪問請求,共花了66.328125秒,這個程序每秒可處理1.51個請求。
2.4 問題
在實際使用中,我發(fā)現(xiàn)-c 參數(shù),即一次同時產(chǎn)生的并發(fā)請求個數(shù)最多設置成64,大于等于65就會報錯,不知道為什么。
]]>2,打開Apache的安裝目錄,找到httpd.conf文件,分別去掉下面兩行文字前面的#號。
#LoadModule vhost_alias_module modules/mod_vhost_alias.so
去掉#意思是啟用apache的虛擬主機功能。
#Include conf/extra/httpd-vhosts.conf
去掉這一行的#意思是從conf/extra/httpd-vhosts.conf這個文件導入虛擬主機配置。
3,打開extra目錄內(nèi)的httpd-vhosts.conf文件,把默認的配置
ServerAdmin webmaster@dummy-host.localhost
DocumentRoot "/www/docs/dummy-host.localhost"
ServerName dummy-host.localhost
ServerAlias www.dummy-host.localhost
ErrorLog "logs/dummy-host.localhost-error_log"
CustomLog "logs/dummy-host.localhost-access_log common"
ServerAdmin webmaster@dummy-host2.localhost
DocumentRoot "/www/docs/dummy-host2.localhost"
ServerName dummy-host2.localhost
ErrorLog "logs/dummy-host2.localhost-error_log"
CustomLog "logs/dummy-host2.localhost-access_log common"
改成自己想要的目錄和域名
ServerAdmin webmaster@dummy-host.localhost
DocumentRoot "D:/wamp/www/"
ServerName localhost
ServerAlias localhost
ErrorLog "logs/localhost-error_log"
ServerAdmin webmaster@dummy-host.localhost
DocumentRoot "D:/wamp/www/web/"
ServerName test.com (填主域名)
ServerAlias *.test.com (這里的服務器別名可以支持泛解析)
ErrorLog "logs/localhost-error_log"
如果 弄完之后 出現(xiàn)403錯誤 那 在httpd.conf里找到:
Options FollowSymLinks ExecCGI Indexes
AllowOverride None
Order deny,allow
Deny from all
Satisfy all
更改為
Options FollowSymLinks ExecCGI Indexes
AllowOverride None
# Order deny,allow
# Deny from all
# Satisfy all