按照Apache Bench
yum install -y httpd-tools
ab -n 20000 -c 20000 http://172.16.0.8/ ab -n 2000000 -c 20000 -t 30 -H 'Accept-Encoding: gzip' -k http://172.16.0.2/
循環請求
while true; do ab -n 10000 -c 10000 -t 30 -H 'Accept-Encoding: gzip' -k http://172.16.0.2/ && sleep 5; done