AB(Apache基准测试)进行身份验证

时间:2014-05-19 13:56:13

标签: ajax performance apache zend-framework benchmarking

我想用AB(Apache Benchemark)通过参数验证来测试我的apache的性能。 我按照本教程步骤操作 Using Apache Benchmark (ab) on sites with authentication 当我执行命令

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开发的

是你可以帮助我

1 个答案:

答案 0 :(得分:0)

你必须引用cookie值:

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

请参阅此其他问题作为参考:How do I pass a complex cookie to ab for testing?

相关问题