出于测试的需要,本文简单记录下在 MacOS 上安装 Apache ab 压测工具的相关操作步骤。

1、下载 Apache

下载地址:Apache HTTP Server

2、安装依赖

brew install apr
brew install pcre

3、编译安装

./configure

可能报错 configure: error: APR not found. Please read the documentation.

指定路径(根据实际情况修改)

./configure --with-apr=/usr/local/Cellar/apr/1.7.0/ --with-apr-util=/usr/local/Cellar/apr-util/1.6.1_3/
make
make install

标签:MacOS