apache自帶壓力測試工具ab用法簡介:
ab的全稱是apachebench,是apache附帶的乙個小工具,專門用於http server的benchmark testing,可以同時模擬多個併發請求。
在這個例子的一開始,我執行了這樣乙個命令ab -n 10 -c 10 這個命令的意思是啟動ab,向www.google.com傳送10個請求(-n 10) ,並每次傳送10個請求(-c 10)——也就是說一次都發過去了。跟著下面的是ab輸出的測試報告,紅色部分是我新增的注釋。*
d:\apahce\bin>ab.exe -n 10 -c 10
this is apachebench, version 2.0.40-dev <$revision: 1.146 $> apache-2.0
benchmarking www.google.com (be patient).....done
server software: gws
server hostname: www.google.com
server port: 80
document path: /
document length: 4941 bytes
concurrency level: 10
time taken for tests: 5.218750 seconds//**整個測試持續的時間**
complete requests: 10//**完成的請求數量**
failed requests: 9//**失敗的請求數量**
(connect: 0, length: 9, exceptions: 0)
write errors: 0
total transferred: 52730 bytes**整個場景中的網路傳輸量**
html transferred: 49540 bytes**整個場景中的html內容傳輸量**
requests per second: 1.92 [#/sec] (mean) **
大家最關心的指標之一,相當於lr中的每秒事務數,後面括號中的mean表示這是乙個平均值**
time per request: 5218.750 [ms] (mean) *
大家最關心的指標之二,相當於lr中的平均事務響應時間,後面括號中的mean表示這是乙個平均值**
time per request: 521.875 [ms] (mean, across all concurrent requests)
transfer rate: 9.77 [kbytes/sec] received*平均每秒網路上的流量,可以幫助排除是否存在網路流量過大導致響應時間延長的問題**
connection times (ms)
min mean[+/-sd] median max
connect: 187 488 257.6 437 921
processing: 312 1673 1204.4 1547 3985
waiting: 296 1668 1206.3 1546 3984
total: 593 2162 1432.6 1890 4906
**下面的內容為整個場景中所有請求的響應情況。在場景中每個請求都有乙個響應時間,其中50%的使用者響應時間小於**毫秒,60%的使用者響應時間小於**毫秒,最大的響應時間小於 **毫秒**
percentage of the requests served within a certain time (ms)
50% 1890
66% 2406
75% 3093
80% 3984
90% 4906
95% 4906
98% 4906
99% 4906
100% 4906 (longest request)
格式:./ab [options] [http://]hostname[:port]/path
引數:-n requests number of requests to perform
//在測試會話中所執行的請求個數。預設時,僅執行乙個請求
-c concurrency number of multiple requests to make
//一次產生的請求個數。預設是一次乙個。
-t timelimit seconds to max. wait for responses
//測試所進行的最大秒數。其內部隱含值是-n 50000。它可以使對伺服器的測試限制在乙個固定的總時間以內。預設時,沒有時間限制。
-p postfile file containing data to post
//包含了需要post的資料的檔案.
-t content-type content-type header for posting
//post資料所使用的content-type頭資訊。
-v verbosity how much troubleshooting info to print
//設定顯示資訊的詳細程度 - 4或更大值會顯示頭資訊, 3或更大值可以顯示響應**(404, 200等), 2或更大值可以顯示警告和其他資訊。 -v 顯示版本號並退出。
-w print out results in html tables
//以html表的格式輸出結果。預設時,它是白色背景的兩列寬度的一張表。
-i use head instead of get
// 執行head請求,而不是get。
-x attributes string to insert as table attributes
//-y attributes string to insert as tr attributes
//-z attributes string to insert as td or th attributes
//-c attribute add cookie, eg. 'apache=1234. (repeatable)
//-c cookie-name=value 對請求附加乙個cookie:行。 其典型形式是name=value的乙個引數對。此引數可以重複。
-h attribute add arbitrary header line, eg. 'accept-encoding: gzip'
inserted after all normal header lines. (repeatable)
-a attribute add basic www authentication, the attributes
are a colon separated username and password.
-p attribute add basic proxy authentication, the attributes
are a colon separated username and password.
//-p proxy-auth-username:password 對乙個中轉**提供basic認證信任。使用者名稱和密碼由乙個:隔開,並以base64編碼形式傳送。無論伺服器是否需要(即, 是否傳送了401認證需求**),此字串都會被傳送。
apache自帶壓力測試工具ab詳解
ab 壓力測試命令 格式 ab options http hostname port path n 測試會話中所執行的請求個數,預設時,僅執行乙個請求 c 一次產生的請求個數。預設是一次乙個 t 測試所進行的最大秒數 v 設定顯示資訊的詳細程度 4或更大值會顯示頭資訊,3或更大值可以顯示響應 404...
apache自帶壓力測試工具ab詳解(整理)。
ab 壓力測試命令 格式 ab options http hostname port path n 測試會話中所執行的請求個數,預設時,僅執行乙個請求 c 一次產生的請求個數。預設是一次乙個 t 測試所進行的最大秒數 v 設定顯示資訊的詳細程度 4或更大值會顯示頭資訊,3或更大值可以顯示響應 404...
Apache自帶的ab壓力測試工具用法詳解
apache自帶的ab壓力測試工具用法詳解ab的原理 ab是apachebench命令的縮寫。ab的原理 ab命令會建立多個併發訪問執行緒,模擬多個訪問者同時對某一url位址進行訪問。它的測試目標是基於url的,因此,它既可以用來測試apache的負載壓力,也可以測試nginx lighthttp ...