使用ab(apachebench)进行压力测试
2019獨角獸企業重金招聘Python工程師標準>>>
環境:WAMP(windows+apache+mysql+php)
ab路徑:E:\apache\bin\ab.exe
操作:1.win+r 打開命令行程序
??????????2.輸入E:\apache\bin\ab.exe ?-n 1000 -c 200 http://localhost/aaa/index.php
-n后面的1000代表總共發出1000個請求;-c后面的200表示采用200個并發(模擬200個人同時訪問),后面的網址表示測試的目標URL
?
?
ApacheBench命令原理:
ab命令會創建很多的并發訪問線程,模擬多個訪問者同時對某一URL地址進行訪問。它的測試目標是基于URL的,因此,既可以用來測試Apache的負載壓力,也可以測試nginx、lighthttp、tomcat、IIS等其它Web服務器的壓力。
ab命令對發出負載的計算機要求很低,既不會占用很高CPU,也不會占用很多內存,但卻會給目標服務器造成巨大的負載,其原理類似CC攻擊。自己測試使用也須注意,否則一次上太多的負載,可能造成目標服務器因資源耗完,嚴重時甚至導致死機。
ApacheBench參數說明
格式:ab [options] [http://]hostname[:port]/path
參數說明:
-n requests Number of requests to perform
//在測試會話中所執行的請求個數(本次測試總共要訪問頁面的次數)。默認時,僅執行一個請求。
-c concurrency Number of multiple requests to make
//一次產生的請求個數(并發數)。默認是一次一個。
-t timelimit Seconds to max. wait for responses
//測試所進行的最大秒數。其內部隱含值是-n 50000。它可以使對服務器的測試限制在一個固定的總時間以內。默認時,沒有時間限制。
-p postfile File containing data to POST
//包含了需要POST的數據的文件,文件格式如“p1=1&p2=2”.使用方法是 -p 111.txt 。 (配合-T)
-T content-type Content-type header for POSTing
//POST數據所使用的Content-type頭信息,如 -T “application/x-www-form-urlencoded” 。 (配合-p)
-v verbosity How much troubleshooting info to print
//設置顯示信息的詳細程度 – 4或更大值會顯示頭信息, 3或更大值可以顯示響應代碼(404, 200等), 2或更大值可以顯示警告和其他信息。 -V 顯示版本號并退出。
-w Print out results in HTML tables
//以HTML表的格式輸出結果。默認時,它是白色背景的兩列寬度的一張表。
-i Use HEAD instead of GET
// 執行HEAD請求,而不是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. -C “c1=1234,c2=2,c3=3” (repeatable)
//-C cookie-name=value 對請求附加一個Cookie:行。 其典型形式是name=value的一個參數對。此參數可以重復,用逗號分割。
提示:可以借助session實現原理傳遞 JSESSIONID參數, 實現保持會話的功能,如
-C ” c1=1234,c2=2,c3=3, JSESSIONID=FF056CD16DA9D71CB131C1D56F0319F8″ 。
-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.
//-P proxy-auth-username:password 對一個中轉代理提供BASIC認證信任。用戶名和密碼由一個:隔開,并以base64編碼形式發送。無論服務器是否需要(即, 是否發送了401認證需求代碼),此字符串都會被發送。
-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)
//-attributes 設置屬性的字符串. 缺陷程序中有各種靜態聲明的固定長度的緩沖區。另外,對命令行參數、服務器的響應頭和其他外部輸入的解析也很簡單,這可能會有不良后果。它沒有完整地實現 HTTP/1.x; 僅接受某些’預想’的響應格式。 strstr(3)的頻繁使用可能會帶來性能問題,即你可能是在測試ab而不是服務器的性能。
?
貼一個結果分析:
This is ApacheBench, Version 2.3 Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/ Licensed to The Apache Software Foundation, http://www.apache.org/Benchmarking 192.168.80.157 (be patient) Completed 400 requests Completed 800 requests Completed 1200 requests Completed 1600 requests Completed 2000 requests Completed 2400 requests Completed 2800 requests Completed 3200 requests Completed 3600 requests Completed 4000 requests Finished 4000 requestsServer Software: Apache/2.2.15 Server Hostname: 192.168.80.157 Server Port: 80Document Path: /phpinfo.php #測試的頁面 Document Length: 50797 bytes #頁面大小Concurrency Level: 1000 #測試的并發數 Time taken for tests: 11.846 seconds #整個測試持續的時間 Complete requests: 4000 #完成的請求數量 Failed requests: 0 #失敗的請求數量 Write errors: 0 Total transferred: 204586997 bytes #整個過程中的網絡傳輸量 HTML transferred: 203479961 bytes #整個過程中的HTML內容傳輸量 Requests per second: 337.67 [#/sec] (mean) #最重要的指標之一,相當于LR中的每秒事務數,后面括號中的mean表示這是一個平均值 Time per request: 2961.449 [ms] (mean) #最重要的指標之二,相當于LR中的平均事務響應時間,后面括號中的mean表示這是一個平均值 Time per request: 2.961 [ms] (mean, across all concurrent requests) #每個連接請求實際運行時間的平均值 Transfer rate: 16866.07 [Kbytes/sec] received #平均每秒網絡上的流量,可以幫助排除是否存在網絡流量過大導致響應時間延長的問題 Connection Times (ms) min mean[+/-sd] median max Connect: 0 483 1773.5 11 9052 Processing: 2 556 1459.1 255 11763 Waiting: 1 515 1459.8 220 11756 Total: 139 1039 2296.6 275 11843 #網絡上消耗的時間的分解,各項數據的具體算法還不是很清楚Percentage of the requests served within a certain time (ms) 50% 275 66% 298 75% 328 80% 373 90% 3260 95% 9075 98% 9267 99% 11713 100% 11843 (longest request)轉載于:https://my.oschina.net/u/2544569/blog/917328
《新程序員》:云原生和全面數字化實踐50位技術專家共同創作,文字、視頻、音頻交互閱讀總結
以上是生活随笔為你收集整理的使用ab(apachebench)进行压力测试的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: sqlserver 标准系统数据库
- 下一篇: 制作U盘启动盘将Ubuntu 12.04