ab(apachebench)是apache自带的压力测试工具。ab非常实用,它不仅可以对apache服务器进行网站访问压力测试,也可以对或其它类型的服务器进行压力测试。文章介绍centos7.5环境下使用wrk进行压力测试。
Quick Guide
安装
1 | # 安装 |
参数说明
1 | 格式:ab [options] [http://]hostname[:port]/path |
简单实例
并发10,请求100
1
ab -n100 -c10 http://www.baidu.com/
结果以html的形式输出
1
ab -n100 -c10 -w http://www.baidu.com/
测试结果说明
1 | ab -n 100 -c 10 https://www.baidu.com/index.html |
More info: 官网