1.安装工具
yum -y install httpd-tools
工具介绍:是apache自在的一款工具,但可以对多种常见web服务器进行测试,如ng,apache,tomcat等。
该工具的使用不依赖于apache,直接安装就可以使用
安装完成后,可以查看版本
[root@ ~]# ab -V
This is ApacheBench, Version 2.3 <$Revision: 1430300 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/
2.使用工具
ab -c 500 -n 5000 http://localhost/
参数说明:
-c:Number of multiple requests to make at a time :一次发出多少请求
-n:Number of requests to perform:请求多少次
更多参数装了自己看
注意力度,看服务器配置,别给整瘫了。