web壓力測試軟件有不少,此次教你們三個 ab(apache),siege(可測試總體網站),webbench(測試高併發)php
一.ab
安裝就很少介紹了,安裝apache就會安裝的html
# ab -c 100 -n 10000 http://127.0.0.1/index.php
表示同時處理100個請求並運行10000次web
二.siegeapache
# wget ftp://sid.joedog.org/pub/siege/siege-latest.tar.gz # ./configure # make # make install
創建網站列表服務器
# vi www.domain.com.url ############################# http://127.0.0.1/01.html http://127.0.0.1/02.html http://127.0.0.1/03.html http://127.0.0.1/04.html http://127.0.0.1/05.html #############################
測試併發網絡
# siege -c 20 -r 2 -f www.domain.com.url
參數說明:
-c 20 併發20個用戶
-r 2 重複循環2次
-f www.domain.com.url 任務列表:URL列表併發
輸出樣例:dom
** Siege 2.59 ** Preparing 20 concurrent users for battle. 此次「戰鬥」準備了20個併發用戶 The server is now under siege.. done. 服務在「圍攻」測試中: Transactions: 40 hits 完成40次處理 Availability: 100.00 % 成功率 Elapsed time: 7.67 secs 總共用時 Data transferred: 877340 bytes 共數據傳輸:877340字節 Response time: 1.65 secs 相應用時1.65秒:顯示網絡鏈接的速度 Transaction rate: 5.22 trans/sec 平均每秒完成5.22次處理:表示服務器後臺處理的速度 Throughput: 114385.92 bytes/sec 平均每秒傳送數據:114385.92字節 Concurrency: 8.59 最高併發數 8.59 Successful transactions: 40 成功處理次數 Failed transactions: 0 失敗處理次數
注意:因爲速度很快,可能會達不到併發速度很高就已經完成。Response time顯示的是測試機器和被測ide
試服務器之間網絡連接情況。Transaction rate則表示服務器端任務處理的完成速度。高併發
三.webbench
# tar zxvf webbench-1.5.tar.gz # cd webbench-1.5 # make && make install
壓力測試
# webbench -c 500 -t 30 http://127.0.0.1/test.jpg
參數說明:-c表示併發數,-t表示時間(秒)
webbench有一點好處,就是能夠測試高達 3萬的併發數
參考
http://www.chedong.com/blog/archives/000033.html
http://blog.s135.com/read.php/288.htm