Mac系统Apache ab压测工具安装

一、下载Apache HTTP Server,存放任意目录

https://httpd.apache.org/download.cgi#apache24

image.png

二、安装

brew install apr
brew install pcre

进入到 httpd-2.4.52 的目录下
执行如下命令:

./configure

./configure若出现以下报错

image.png

执行

./configure  --with-apr=/usr/local/opt/apr --with-apr-util=/usr/local/opt/apr-util  --with-pcre=/usr/local/opt/pcre --enable-ssl --with-ssl=/usr/local/opt/openssl

执行完成后,apache 会被安装在 /usr/local/apache2 ,需要自己创建apache2文件夹

cd /usr/local
sudo madir apche2
sudo chown 当前用户名 apache2

进入httpd-2.4.52目录
执行

make&&make install

当输出如下日志就安装成功了


image.png

三、示例

image.png

你可能感兴趣的:(Mac系统Apache ab压测工具安装)