第一步:下载 Apache HTTP Server
http://httpd.apache.org/download.cgi#apache24
第二步:安装brew工具
https://brew.sh/index_zh-cn
第三步、正式安装
在正式安装之前,需要先安装apr和pcre,如果报错的话按照提示去做
- brew install apr
- brew install pcre
- brew install apr-util
然后进入到 httpd-2.4.38 的目录下
依次执行如下命令:
./configure
make
make install
可能报错 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
安装成功了
接下来,去/usr/local/apache2目录下查看
至此,我们就可以使用ab进行压力测试了