1 安裝:yum -y install httpd-tools
2 檢視目錄:which ab ab -v 檢視版本
3 測試 :ab -n 1000 -c 100 100人同時訪問1000次
結果:server software: bfe/1.0.8.18
server port: 443 https的預設埠
document length: 161 bytes 請求的檔案的大小
concurrency level: 100 併發數
time taken for tests: 0.729 seconds 請求時間 單位 秒
complete requests: 1000 總請求次數
failed requests: 0 失敗請求次數
non-2xx responses: 1000 http碼 200-300 的請求次數
total transferred: 352000 bytes 表示總共的傳輸數量
html transferred: 161000 bytes 表示html數量
requests per second: 1371.13 [#/sec] (mean) --表示平均每秒完成 的請求數 當前請求的乙個qps
time per request: 72.932 [ms] (mean)
time per request: 0.729 [ms] (mean, across all concurrent requests)
transfer rate: 471.33 [kbytes/sec] received
connection times (ms)
min mean[+/-sd] median max
connect: 21 51 8.3 51 74
processing: 6 16 7.8 13 47
waiting: 6 12 5.1 11 37
total: 31 67 8.7 65 116
percentage of the requests served within a certain time (ms)
50% 65
66% 67
75% 69
80% 70
90% 76
95% 84
98% 97
99% 107
100% 116 (longest request)
效能工具ab安裝及使用
簡介 ab全稱為 apache bench ab是apache超文字傳輸協議 http 的效能測試工具。其設計意圖是描繪當前所安裝的apache的執行效能,主要是顯示你安裝的apache每秒可以處理多少個請求。安裝 linux環境下,執行命令 安裝ab 檢查是否安裝成功 ab v 執行ab v,顯示...
Mac 使用ab效能測試工具
1.在mac中配置apache 啟動apache,開啟終端 sudo apachectl v如下顯示apache的版本 sudo apachectl start這樣apache就啟動了。開啟safari瀏覽器位址列輸入 http localhost 可以看到內容為 it works 的頁面 設定虛擬...
效能測試工具AB的使用
效能測試工具ab的使用 ab的引數 n requests 執行的請求數,即一共發起多少請求。c concurrency 請求併發數。t timelimit 測試所進行的最大秒數。其內部隱含值是 n 50000,它可以使對伺服器的測試限制在乙個固定的總時間以內。預設時,沒有時間限制。s timeout...