ab -n 800 -c 800(-n發出800個請求,-c模擬800併發,相當800人同時訪問,後面是測試url)
ab -t 60 -c 100
在60秒內發請求,一次100個請求。
1.1##伺服器軟體和版本
##埠document path: /s
##請求的路徑
document length: 112435 bytes
##頁面資料/返回的資料量
concurrency level: 10
##併發數
time taken for tests: 4.764 seconds
##共使用了多少時間
complete requests: 100
##請求數
failed requests: 99
(connect: 0
, receive: 0
, length: 99
, exceptions: 0
)total transferred: 11342771 bytes
##總共傳輸位元組數,包含http的頭資訊等
html transferred: 11247622 bytes
##html位元組數,實際的頁面傳遞位元組數
requests per second: 20.99
[#/sec] (mean)
##每秒多少請求,這個是非常重要的引數數值,伺服器的吞吐量
time per request: 476.427
[ms]
(mean)
##使用者平均請求等待時間
time per request: 47.643
[ms]
(mean, across all concurrent requests)
##伺服器平均處理時間,也就是伺服器吞吐量的倒數
transfer rate: 2325.00
[kbytes/sec] received
##每秒獲取的資料長度
connection times (ms)
min mean[+/
-sd] median max
connect: 22
4112.4
3982
##連線的最小時間,平均值,中值,最大值
processing: 113
386211.1
3301246
##處理時間
waiting: 25
8043.9
73266
##等待時間
total: 152
427210.1
3731283
##合計時間
percentage of the requests served within a certain time
(ms)50%
373## 50%的請求在373ms內返回 66%
400## 60%的請求在400ms內返回 75%
42680
%46590%
76195
%93098%
119299%
1283
100%
1283
(longest request)
ab壓測詳解
前言 首先要安裝工具,才能使用 yum y install httpd tools1.命令引數詳解 n 測試會話中所執行的請求個數,預設僅執行乙個請求 c 一次產生的請求個數,即同一時間發出多少個請求,預設為一次乙個 t 測試所進行的最大秒數,預設為無時間限制.其內部隱含值是 n 50000 它可以...
ab網頁壓測命令詳解
centos安裝命令 簡介 apachebench 是 apache伺服器自帶的乙個web壓力測試工具,簡稱ab。ab又是乙個命令列工具,對發起負載的本機要求很低,根據ab命令可以建立很多的併發訪問執行緒,模擬多個訪問者同時對某一url位址進行訪問,因此可以用來測試目標伺服器的負載壓力。總的來說ab...
ab壓測新增壓測引數說明
普通的測試,使用 c n引數配合就可以完成任務 格式 ab options http hostname port path 引數 n 測試的總請求數。預設時,僅執行乙個請求 c 一次併發請求個數。預設是一次乙個。h 新增請求頭,例如 accept encoding gzip 以gzip方式請求。t ...