linux下安裝ab壓力測試工具及ab命令詳解
阿新 • • 發佈:2018-11-10
yum -y install httpd-tools
ab -v 檢視ab版本
ab –help
ab -n1000 -c 10 http://www.xxxx.com/
以上命令-n訪問1000次, -c併發10個
ab壓力測試返回報文內容詳解:
Server Software: Apache #伺服器軟體 Server Hostname: www.91cnm.com #域名 Server Port: 80 #請求埠號 Document Path: / #檔案路徑 Document Length: 40888 bytes #頁面位元組數 Concurrency Level: 10 #請求的併發數 Time taken for tests: 27.300 seconds #總訪問時間 Complete requests: 1000 #請求成功數量 Failed requests: 0 #請求失敗數量 Write errors: 0 Total transferred: 41054242 bytes #請求總資料大小(包括header頭資訊) HTML transferred: 40888000 bytes #html頁面實際總位元組數 Requests per second: 36.63 [#/sec] (mean) #每秒多少請求,這個是非常重要的引數數值,伺服器的吞吐量 Time per request: 272.998 [ms] (mean) #使用者平均請求等待時間 Time per request: 27.300 [ms] (mean, across all concurrent requests) # 伺服器平均處理時間,也就是伺服器吞吐量的倒數 Transfer rate: 1468.58 [Kbytes/sec] received #每秒獲取的資料長度 Connection Times (ms) min mean[+/-sd] median max Connect: 43 47 2.4 47 53 Processing: 189 224 40.7 215 895 Waiting: 102 128 38.6 118 794 Total: 233 270 41.3 263 945 Percentage of the requests served within a certain time (ms) 50% 263 #50%使用者請求在263ms內返回 66% 271 #66%使用者請求在271ms內返回 75% 279 #75%使用者請求在279ms內返回 80% 285 #80%使用者請求在285ms內返回 90% 303 #90%使用者請求在303ms內返回 95% 320 #95%使用者請求在320ms內返回 98% 341 #98%使用者請求在341ms內返回 99% 373 #99%使用者請求在373ms內返回 100% 945 (longest request) --------------------- 作者:或非與 來源:CSDN 原文:https://blog.csdn.net/qq_27517377/article/details/78794409 版權宣告:本文為博主原創文章,轉載請附上博文連結!