http_load是基於Linux平台的一種性能測工具。它是以並行復用的方式運行,僅適用於Web頁面的性能測試,不適用於訪問數據庫,而且測試結果分析是有限的,平台依賴Linux 。http_load可以簡單地通過txt文本文件中記錄的參數來對HTTP服務器進行壓力測試,那是如何對服務器進行壓力測試的呢?下面我們就來介紹Linux中如何安裝使用http_load對服務器進行壓力測試的教程。
具體方法步驟如下:
1、下載
官方網站:http://acme.com/software/http_load/
代碼如下:
cd /root
wget http://acme.com/software/http_load/http_load-12mar2006.tar.gz
tar xzf http_load-12mar2006.tar.gz
2、安裝
代碼如下:
cd http_load-12mar2006
make
執行完make,會在當前目錄生成一個http_load二進制文件。
3、使用方法
代碼如下:
root@www:~/http_load-12mar2006# 。/http_load --help
usage: 。/http_load [-checksum] [-throttle] [-proxy host:port] [-verbose] [-timeout secs] [-sip sip_file]
-parallel N | -rate N [-jitter]
-fetches N | -seconds N
url_file
One start specifier, either -parallel or -rate, is required.
One end specifier, either -fetches or -seconds, is required.
主要參數說明:
-parallel 簡寫-p :含義是並發的用戶進程數。
-rate 簡寫-r :含義是每秒的訪問頻率
-fetches 簡寫-f :含義是總計的訪問次數
-seconds簡寫-s :含義是總計的訪問時間
選擇參數時,-parallel和-rate選其中一個,-fetches和-seconds選其中一個。
4、示例:
代碼如下:
http_load -parallel 50 -s 10 urls.txt
這段命令行是同時使用50個進程,隨機訪問urls.txt中的網址列表,總共訪問10秒。
代碼如下:
http_load -rate 50 -f 5000 urls.txt
每秒請求50次,總共請求5000次停止。
測試網站每秒所能承受的平均訪問量:
代碼如下:
http_load -parallel 5-fetches 1000urls.txt
這段命令行是同時使用5個進程,隨機訪問urls.txt中的網址列表,總共訪問1000次。運行之後的結果:
1000 fetches, 5 max parallel, 6e+06 bytes, in 58.1026 seconds
6000 mean bytes/connection
17.2109 fetches/sec, 103266 bytes/sec
msecs/connect: 0.403263 mean, 68.603 max, 0.194 min
msecs/first-response: 284.133 mean, 5410.13 max, 55.735 min
HTTP response codes:
code 200 — 1000
從上面的運行結果來看,目標網站僅僅能夠承受每秒17次訪問,不夠強壯。
上述就是Linux中如何安裝使用http_load對服務器進行壓力測試的詳細教程,有需要的朋友可以參考下。可按步驟去操作。