ab ApacheBench web測試工具

2021-09-07 06:42:01 字數 2718 閱讀 3118

apachebench引數說明

格式: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的資料的檔案,檔案格式如「p1=1&p2=2」.使用方法是 -p 111.txt 。 (配合-t)

-t content-type content-type header for

posting

//-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. -c 「c1=1234,c2=2,c3=3

」 (repeatable)

//-c cookie-name=value 對請求附加乙個cookie:行。 其典型形式是name=value的乙個引數對。此引數可以重複,用逗號分割。

-c 」 c1=1234,c2=2,c3=3, jsessionid=ff056cd16da9d71cb131c1d56f0319f8″ 。

-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認證需求**),此字串都會被傳送。

//-attributes 設定屬性的字串. 缺陷程式中有各種靜態宣告的固定長度的緩衝區。另外,對命令列引數、伺服器的響應頭和其他外部輸入的解析也很簡單,這可能會有不良後果。它沒有完整地實現 http/1.x; 僅接受某些』預想』的響應格式。 strstr(3)的頻繁使用可能會帶來效能問題,即你可能是在測試ab而不是伺服器的效能。

引數很多,一般我們用 -c 和 -n 引數就可以了。例如:

測試工作小結

從 dev轉做 tester 一段時間了,稍微總結一下。首先說tester 的思維方式與 dev完全不同,我一度經常陷入到原來 dev的考慮問題的老路上去,對一些缺陷總是覺得不安,但實際上軟體產品總是有缺陷的,只要它達到可接受的質量程度就行了。我做tester 的工作主要是 get cases 通常...

壓力測試工具

webbench最多可以模擬3萬個併發連線去測試 的負載能力,比apache自帶的ab壓力測試工具好,安裝使用也特別方便。1 適用系統 linux 2 編譯安裝 引用 wget tar zxvf webbench 1.5.tar.gz cd webbench 1.5 make make instal...

http load測試工具

基於linux平台的一種效能測工具。以並行復用的方式執行,用以測試web伺服器的吞吐量與負載,測試web頁面的效能。優點1.基於命令列,簡單 易於上手 2.小巧輕便,解壓縮後不到100k 3.開源,免費 缺點1.僅適用於web頁面的效能測試,不適用於訪問資料庫 2.測試結果分析有限 3.平台依賴li...