Ubuntu 16.04/CentOS 6.9安装Apache压力(并发)测试工具ab
说明:
ab工具已经在Apache中包含,如果不想安装Apache,那么可以使用下面方法单独安装。
安装:
Ubuntu:
sudo apt-get install apache2-utils
CentOS:
sudo yum -y install httpd-tools
官网:
http://httpd.apache.org/(Apache服务器)
http://httpd.apache.org/docs/2.0/programs/(Apache工具文档大全)
http://httpd.apache.org/docs/2.0/programs/ab.html(文档教程)
http://httpd.apache.org/docs/current/programs/ab.html(文档教程)
简单使用:
运行
ab -n 100 -c 10 http://www.baidu.com/
#注意网址最后要带斜杠
对http://www.baidu.com/进行100次请求,10个并发请求压力测试结果。