压力测试
在任意目录下执行该命令:yum -y install httpd-tools
测试一下ab是否安装成功:ab -V
执行命令:
ab -n 1000 -c 200 https://www.taobao.com/
-n:1000次请求,-c:代表并发数,每次发送200个,共5次。应该会有好多Failed requests:
-T:如果是POST或put请求,要设置content-type,如'application/x-www-form-urlencoded',默认'text/plain'
本文来自博客园,作者:每天都要学一点,欢迎讨论和转载,转载请注明原文链接:https://www.cnblogs.com/yanan7890/p/7444887.html