linux下使用ab对nginx进行压力测试

ubuntu安装ab
# apt-get install apache2-utils
centos安装ab
# yum install httpd-tools
ab使用方法
ab [可选的参数选项] 需要进行压力测试的url
-n
    即requests,用于指定压力测试总共的执行次数。
-c
    即concurrency,用于指定压力测试的并发数。
-t
    即timelimit,等待响应的最大时间(单位:秒)。
-b
    即windowsize,TCP发送/接收的缓冲大小(单位:字节)。
-p
    即postfile,发送POST请求时需要上传的文件,此外还必须设置-T参数。
-u
    即putfile,发送PUT请求时需要上传的文件,此外还必须设置-T参数。
-T
    即content-type,用于设置Content-Type请求头信息,例如:application/x-www-form-urlencoded,默认值为text/plain。
-v
    即verbosity,指定打印帮助信息的冗余级别。
-w
    以HTML表格形式打印结果。
-i
    使用HEAD请求代替GET请求。
-x
    插入字符串作为table标签的属性。
-y
    插入字符串作为tr标签的属性。
-z
    插入字符串作为td标签的属性。
-C
    添加cookie信息,例如:"Apache=1234"(可以重复该参数选项以添加多个)。
-H
    添加任意的请求头,例如:"Accept-Encoding: gzip",请求头将会添加在现有的多个请求头之后(可以重复该参数选项以添加多个)。
-A
    添加一个基本的网络认证信息,用户名和密码之间用英文冒号隔开。
-P
    添加一个基本的代理认证信息,用户名和密码之间用英文冒号隔开。
-X
    指定使用的代理服务器和端口号,例如:"126.10.10.3:88"。
-V
    打印版本号并退出。
-k
    使用HTTP的KeepAlive特性。
-k
    使用HTTP的KeepAlive特性。
-d
    不显示百分比。
-S
    不显示预估和警告信息。
-g
    输出结果信息到gnuplot格式的文件中。
-e
    输出结果信息到CSV格式的文件中。
-r
    指定接收到错误信息时不退出程序。
-h
    显示用法信息,其实就是ab -help。
 测试
# ab -kc 1000 -n 1000 http://localhost/ceshi.php
这个指令会使用1000个并发,进行连接1000次。结果如下
[root@localhost ~]# ab -kc 1000 -n 1000 http://localhost/ceshi.php
This is ApacheBench, Version 2.3 <$Revision: 1430300 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/

Benchmarking localhost (be patient)
Completed 100 requests
Completed 200 requests
Completed 300 requests
Completed 400 requests
Completed 500 requests
Completed 600 requests
Completed 700 requests
Completed 800 requests
Completed 900 requests
Completed 1000 requests
Finished 1000 requests


Server Software:        nginx
Server Hostname:        localhost
Server Port:            80

Document Path:          /ceshi.php
Document Length:        25 bytes

Concurrency Level:      1000
Time taken for tests:   0.200 seconds
Complete requests:      1000
Failed requests:        0
Write errors:           0
Non-2xx responses:      1000
Keep-Alive requests:    0
Total transferred:      185000 bytes
HTML transferred:       25000 bytes
Requests per second:    5007.91 [#/sec] (mean)
Time per request:       199.684 [ms] (mean)
Time per request:       0.200 [ms] (mean, across all concurrent requests)
Transfer rate:          904.75 [Kbytes/sec] received

Connection Times (ms)
              min  mean[+/-sd] median   max
Connect:        0   27  10.9     21      44
Processing:    25   94  26.4     99     136
Waiting:        2   94  26.5     99     136
Total:         25  121  32.9    121     175

Percentage of the requests served within a certain time (ms)
  50%    121
  66%    140
  75%    149
  80%    155
  90%    166
  95%    172
  98%    175
  99%    175
 100%    175 (longest request)
post请求:
ab -n 200 -c 10  -T 'application/json' -p post.json http://localhost/ceshi/post/
post.json
{"name": "张三","sex": "男"}





您可以选择一种方式赞助本站

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: