ChinaUnix.net
相关文章推荐:

Failed requests ab测试

相关讨论

请问:apache通常用什么工具做性能测试?本地的?远程的? ab测试apache出现了failed request 是什么原因,/var/log/httpd/下没记录相关的信息啊? 下面的结果算正常吗? [root@localhost httpd]# ab -n 1000 -c 100 http://localhost/ This is ApacheBench, Version 2.0.40-dev <$Revision: 1.146 $> apache-2.0 Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/ Copyright 2006 The Apache Software F...

by ruger - 监控及自动化运维技术 - 2010-10-06 10:14:53 阅读(4520) 回复(3)
by ruger - 服务器应用 - 2010-10-08 10:03:17 阅读(3049) 回复(3)

apache 压力测试工具ab 内容摘要 ab是Apache超文本传输协议(HTTP)的性能测试工具。 其设计意图是描绘当前所安装的Apache的执行性能, 主要是显示你安装的Apache每秒可以处理多少个请求 ab是Apache超文本传输协议(HTTP)的性能测试工具。 其设计意图是描绘当前所安装的Apache的执行性能, 主要是显示你安装的Apache每秒可以处理多少个请求。 概要 ab [ -A auth-username ] [ -c concurrency ] [ -C cookie-name=value ] [ -...

by xuqiangjun - Linux文档专区 - 2007-07-09 13:33:25 阅读(2765) 回复(0)

动态页面: This is ApacheBench, Version 2.0.40-dev <$Revision: 1.146 $> apache-2.0 Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/ Copyright 2006 The Apache Software Foundation, http://www.apache.org/ Benchmarking abc.com (be patient).....done Server Software: Apache/2.2.8 Server Hostname: abc.com Server Port: 80 Document Path: /index.p...

by 数根根 - 服务器应用 - 2008-10-16 16:36:04 阅读(1621) 回复(2)

[root@ibm ~]# ab -n 10000 -c 500 http://192.168.1.200/index.jsp This is ApacheBench, Version 2.0.40-dev <$Revision: 1.146 $> apache-2.0 Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/ Copyright 2006 The Apache Software Foundation, http://www.apache.org/ Benchmarking 192.168.1.200 (be patient) Completed 1000 requests Completed 2000 requests Completed 3000 requests Complete...

by daizhongxian - Linux系统管理 - 2008-09-04 14:13:48 阅读(1819) 回复(5)

20490 tomcat55 18 0 303m 90m 5900 S 109 4.5 1:27.28 jsvc # ab -c 1000 -n 100000 http://127.0.0.1:8080/gzjsgov/index.html This is ApacheBench, Version 2.0.40-dev apache-2.0 Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/ Copyright 2006 The Apache Software Foundation, http://www.apache.org/ Benchmarking 127.0.0.1 (be patient) Completed 10000 requests Completed 2...

by etony - Java文档中心 - 2007-09-19 15:06:49 阅读(627) 回复(0)

ab测试Apache server -------------------------------------------------------------------------------- 在阿帕奇服务器的套件中,有一个叫做 ab (ApacheBench) 的工具。ApacheBench 主要是用来测试阿帕奇服务器执行效率用的,我们就以 ApacheBench 做为 CGI vs. FastCGI 的评比工具。 ApacheBench 可以针对某个特定的 URL 仿真出连续的联机请求,同时还可以仿真出同时间点数个相同的联机请求,因此利用 ApacheBench 可帮助我...

by zhengwei_zw - BSD文档中心 - 2007-03-04 22:35:07 阅读(2190) 回复(0)

刚做好的服务器,硬件配置还不错呀.双AMD64 的CPU 通过 PORT安装的APACHE21 安装mysql与php index.php 是一个测试; 通过ab测试ab -c 500 -n 5000 http://192.168.9.129/index.php 出现问题. Test aborted after 10 failures apr_socket_connect(): Operation already in progress (37) Total of 12 requests completed

by lwxkbob - BSD - 2005-10-21 15:13:43 阅读(2529) 回复(2)

本帖最后由 linuxKong 于 2012-07-20 10:17 编辑 我正在配置一台apache服务器,在加上url重写的时候, request per second 只能达到110+,而去掉之后, Write errors: 0 Non-2xx responses: 90119 Keep-Alive requests: 6699 Total transferred: 69987079 bytes HTML transferred: 52603774 bytes requests per second: 6835.47 [#/sec] (mean) Time per request: 438.887 [ms] (mean) Time...

by linuxKong - 服务器应用 - 2012-07-20 10:18:24 阅读(1295) 回复(3)

1. 最基本的关心两个选项 -c -n 例: ./ab -c 100 -n 10000 http://127.0.0.1/index.php -c 100 即:每次并发100个 -n 10000 即: 共发送10000个请求 2. 测试结果分析 [junjie2@login htdocs]$ /data1/apache/bin/ab -c 1000 -n 50000 " http://10.10.10.10/a.php " This is ApacheBench, Version 1.3d apache-1.3 Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/ Copyright (c) 1998-2002 T...

by staryzhou - Linux文档专区 - 2009-07-30 09:15:56 阅读(1083) 回复(0)