AB (Apache基准)到身份验证



我想用AB (apache benchmark)参数身份验证测试我的apache的性能。我遵循这个教程步骤在带有身份验证的站点上使用Apache Benchmark (ab)当我执行命令

ab-c 1-n 1-C PHPSESSID = 65pnirttcbn0l6seutjkf28452 http://my-web-site

但身份验证不通过

testeur@ERP:~$ ab -c 1 -n 1 -C PHPSESSID=65pnirttcbn0l6seutjkf28452 http:my-web-site.com/mapviewimproved
This is ApacheBench, Version 2.3 <$Revision: 655654 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, `http://www.zeustech.net/`
Licensed to The Apache Software Foundation, http://www.apache.org/
Benchmarking my-web-site.com (be patient).....done

Server Software:        Apache
Server Hostname:        algeotrack.com
Server Port:            80
Document Path:          /my-page
Document Length:        0 bytes
Concurrency Level:      1
Time taken for tests:   0.627 seconds
Complete requests:      1
Failed requests:        0
Write errors:           0
Non-2xx responses:      1
Total transferred:      335 bytes
HTML transferred:       0 bytes
Requests per second:    1.59 [#/sec] (mean)
Time per request:       627.320 [ms] (mean)
Time per request:       627.320 [ms] (mean, across all concurrent requests)
Transfer rate:          0.52 [Kbytes/sec] received
Connection Times (ms)
              min  mean[+/-sd] median   max
Connect:       36   36   0.0     36      36
Processing:   591  591   0.0    591     591
Waiting:      591  591   0.0    591     591
Total:        627  627   0.0    627     627

我注意到这个应用程序是用Zend Framework 1开发的

必须引用cookie值:

 ab -c 1 -n 1 -C 'PHPSESSID=65pnirttcbn0l6seutjkf28452' http:my-web-site.com/mapviewimproved

看到另一个问题作为参考:我如何将一个复杂的cookie传递给ab进行测试?

相关内容

  • 没有找到相关文章

最新更新