1、http_loadphp
程序很是小,解壓後也不到100Khtml
http_load以並行複用的方式運行,用以測試web服務器的吞吐量與負載。可是它不一樣於大多數壓力測試工mysql
具,它能夠以一個單一的進程運行,通常不會把客戶機搞死。還能夠測試HTTPS類的網站請求。web
下載地址:http://soft.vpser.net/test/http_load/http_load-12mar2006.tar.gzsql
安裝很簡單apache
tar zxvf http_load-12mar2006.tar.gz cd http_load-12mar2006 make && make install
命令格式:服務器
http_load -p 併發訪問進程數 -s 訪問時間 須要訪問的URL文件
參數其實能夠自由組合,參數之間的選擇並無什麼限制。好比你寫成http_load -parallel 5 -seconds 300 urls.txt也是能夠的。咱們把參數給你們簡單說明一下。cookie
-parallel 簡寫-p :含義是併發的用戶進程數。 -fetches 簡寫-f :含義是總計的訪問次數 -rate 簡寫-p :含義是每秒的訪問頻率 -seconds簡寫-s :含義是總計的訪問時間
準備URL文件:urllist.txt,文件格式是每行一個URL,URL最好超過50-100個測試效果比較好,文件格式網絡
以下:併發
http://www.vpser.net/uncategorized/choose-vps.html http://www.vpser.net/vps-cp/hypervm-tutorial.html http://www.vpser.net/coupons/diavps-april-coupons.html http://www.vpser.net/security/vps-backup-web-mysql.html
例如:
http_load -p 30 -s 60 urllist.txt
參數瞭解了,咱們來看運行一條命令來看看它的返回結果
命令:./http_load -rate 5 -seconds 10 urllist.txt說明執行了一個持續時間10秒的測試,每秒的頻率爲5。
49 fetches, 2 max parallel, 289884 bytes, in 10.0148 seconds5916 mean bytes/connection4.89274 fetches/sec, 28945.5 bytes/secmsecs/connect: 28.8932 mean, 44.243 max, 24.488 minmsecs/first -response: 63.5362 mean, 81.624 max, 57.803 minHTTP response codes: code 200 — 49
結果分析:
特殊說明:
2、webbench
webbench是Linux下的一個網站壓力測試工具,最多能夠模擬3萬個併發鏈接去測試網站的負載能力。下載地址能夠到google搜,我這裏給出一個
下載地址:http://soft.vpser.net/test/webbench/webbench-1.5.tar.gz
這個程序更小,解壓後不到50K,呵呵
安裝很是簡單
tar zxvf webbench-1.5.tar.gz cd webbench-1.5make && make install
會在當前目錄生成webbench可執行文件,直接可使用了
用法:
webbench -c 併發數 -t 運行測試時間 URL
如:
webbench -c 5000 -t 120 http://www.vpser.net
3、ab
ab是apache自帶的一款功能強大的測試工具
安裝了apache通常就自帶了
用法能夠查看它的說明
$ ./ab ./ab: wrong number of arguments Usage: ./ab [options] [http://]hostname[:port]/path Options are: -n requests Number of requests to perform -c concurrency Number of multiple requests to make -t timelimit Seconds to max. wait for responses -p postfile File containing data to POST -T content-type Content-type header for POSTing -v verbosity How much troubleshooting info to print -w Print out results in HTML tables -i Use HEAD instead of 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) -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. -X proxy:port Proxyserver and port number to use -V Print version number and exit -k Use HTTP KeepAlive feature -d Do not show percentiles served table. -S Do not show confidence estimators and warnings. -g filename Output collected data to gnuplot format file. -e filename Output CSV file with percentages served -h Display usage information (this message)
參數衆多,通常咱們用到的是-n和-c
例如:
./ab -c 1000 -n 100 http://www.vpser.net/index.php
這個表示同時處理1000個請求並運行100次index.php文件.
4、Siege
一款開源的壓力測試工具,能夠根據配置對一個WEB站點進行多用戶的併發訪問,記錄每一個用戶全部請求過程的相應時間,並在必定數量的併發訪問下重複進行。
Siege下載:http://soft.vpser.net/test/siege/siege-2.67.tar.gz
安裝:
#解壓: tar -zxf siege-2.67.tar.gz $進入解壓目錄: cd siege-2.67/ #安裝: ./configure ; make make install
使用
siege -c 200 -r 10 -f example.url
-c是併發量,-r是重複次數。 url文件就是一個文本,每行都是一個url,它會從裏面隨機訪問的。
example.url內容:
http://www.licess.cn http://www.vpser.net http://soft.vpser.net
結果說明
Lifting the server siege… done. Transactions: 3419263 hits //完成419263次處理 Availability: 100.00 % //100.00 % 成功率 Elapsed time: 5999.69 secs //總共用時 Data transferred: 84273.91 MB //共數據傳輸84273.91 MB Response time: 0.37 secs //相應用時1.65秒:顯示網絡鏈接的速度 Transaction rate: 569.91 trans/sec //均每秒完成 569.91 次處理:表示服務器後 Throughput: 14.05 MB/sec //平均每秒傳送數據 Concurrency: 213.42 //實際最高併發數 Successful transactions: 2564081 //成功處理次數 Failed transactions: 11 //失敗處理次數 Longest transaction: 29.04 //每次傳輸所花最長時間 Shortest transaction: 0.00 //每次傳輸所花最短期
5、利用autobench工具結合httperf命令對web服務器進行測試,得出該服務器能夠承載的最大併發鏈接數與最佳併發數。
一、Httperf
httperf是一款高性能的HTTP測試工具,使用它咱們能夠準肯定位服務器的併發鏈接能力。下面介紹一下它的主要特徵
下載:http://code.google.com/p/httperf/downloads/list
安裝:
tar xvzf httperf-0.9.0.tar.gz cd httperf-0.9.0 ./configure make && make install
更多的使用方法參見man page。
二、autobench
autobench是一款基於httperf的Perl腳本。它會在一次測試中調用屢次httperf來對web服務器進行測試,每次會按照給定的參數增長併發鏈接數,將 httperf的測試結果保存爲CSV格式的文件,該文件能夠被Excel直接讀取,方便生成測試報告。藉助於autobench自帶的 bench2graph工具能夠生成漂亮的測試結果對比圖
參考:
http://blog.51cto.com/510512/740219(以上內容轉自此篇文章)