码迷,mamicode.com
首页 > Web开发 > 详细

ab(Apache Benchmark)测试工具的安装

时间:2017-09-09 19:03:02      阅读:719      评论:0      收藏:0      [点我收藏+]

标签:apache2   back   https   logs   ffffff   压力测试   arc   apr-util   local   

 下载 ab(Apache Benchmark)                                                                                                                  

ab压力测试工具是跟apache的http一起发布的。

Apache HTTP 官网下载:https://www.apache.org/dyn/closer.cgi

可以选择这个链接下载

技术分享

找到 httpd,点击进入

技术分享

下载一个比较新的gz包。

技术分享

这个时候如果你直接开始安装(第一步当然是./configure),可能会报如下错误:

configure: error: APR not found.  Please read the documentation.

技术分享

那么就需要先安装 Apache Portable Runtime library。

事实上,当你安装 APR OK之后,继续安装 HTTP 的时候还可能会报如下错误:

configure: error: APR-util not found.  Please read the documentation.

那么还需要安装 APR-util 了。

 

安装 APR(Apache Portable Runtime library)                                                                                       

下载 APR(无法使用 wget,也可以使用其他下载工具直接下载链接)

wget http://archive.apache.org/dist/apr/apr-1.4.5.tar.gz

安装

./configure & make & make install

安装的时候安装到默认的路径 /usr/local(可以 ./configure --help 查看默认路径)

技术分享

安装好 APR 之后,安装 HTTP 试一下,果然又需要安装 APR-util(Apache Portable Runtime Utility library)

技术分享

 

 

安装 APR-util(Apache Portable Runtime Utility library)                                                                                                                                                                                

下载 APR-util

wget http://archive.apache.org/dist/apr/apr-util-1.3.12.tar.gz

安装(需要指定 APR 的build路径,注意,不是安装路径,就是解压 APR包生成的路径)

./configure --with-apr=/data/software_package/apr-1.4.5

然后再 make & make install

 

APR 与 APR-util 都安装OK,现在可以安装 HTTP 服务了。

安装好之后,ab 测试工具在 HTTPD 的默认安装路径/bin下面。

我的是在 /usr/local/apache2/bin 下面

技术分享

 

ab(Apache Benchmark)测试工具的安装

标签:apache2   back   https   logs   ffffff   压力测试   arc   apr-util   local   

原文地址:http://www.cnblogs.com/wangxiaokun/p/7498892.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!