安装ab
- windows安装: 下载 http://archive.apache.org/dist/httpd/binaries/win32/?C=M;O=D
- centos安装:
yum install apr-util -y
使用
ab -n 1000 -c 100 http://localhost:8080/
- -n 1000 即: 共发送1000个请求
- -c 100 即:每次并发100个
ab -t 60 -c 100 http://localhost:8080/
- 在60秒内发请求,一次100个请求
如果需要在url中带参数,这样做
ab -t 60 -c 100 -T "text/plain" -p p.txt http://localhost:8080/
- p.txt 是和ab.exe在一个目录
- p.txt 中可以写参数,如 p=wdp&fq=78
参考: