apache-ab:安装与使用
yum install -y httpd-tools
# ab -n 10000000 -c http://IP/index.html
http_load:安装与使用
一、安装
1.下载地址:
链接:https://pan.baidu.com/s/1XSkIEQym6kw-qhLV7DMVbw
提取码:5v2t
#将文件上传至服务器。
2.安装依赖,创建文件夹
yum install -y gcc
mkdir -p /usr/local/man/man1
3.解压并进入目录:
tar zxvf http_load.tar.gz
cd http_load
执行安装:make & make install
4.测试:http_load
./http_load
出现如下内容表示安装成功:
usage: ./http_load [-checksum] [-throttle] [-proxy host:port] [-verbose] [-timeout secs] [-sip sip_file]
-parallel N | -rate N [-jitter]
-fetches N | -seconds N
url_file
One start specifier, either -parallel or -rate, is required.
One end specifier, either -fetches or -seconds, is required
二、使用
1.新建文件,用来存储目标URL(每个URL占一行)
2.输入命令 http_load -parallel 5 -seconds 10 youname.txt
参数说明:
-parallel 简写-p :含义是并发的用户进程数。
-fetches 简写-f :含义是总计的访问次数
-rate 简写-p :含义是每秒的访问频率
-seconds简写-s :含义是总计的访问时间
准备URL文件:urllist.txt,文件格式是每行一个URL,URL最好超过50-100个测试效果比较好.文件格式
如下:
http://www.vpser.net/uncategorized/choose-vps.html
http://www.vpser.net/vps-cp/hypervm-tutorial.html
http://www.vpser.net/coupons/diavps-april-coupons.html
http://www.vpser.net/security/vps-backup-web-mysql.html
例如:
3.使用测试:
./http_load -rate 50 -seconds 10 test.txt ##持续时间10秒的测试,每秒的频率为50。
返回结果:
8 fetches, 492 max parallel, 216160 bytes, in 10.0001 seconds
27020 mean bytes/connection
0.799992 fetches/sec, 21615.8 bytes/sec
msecs/connect: 1.00788 mean, 1.054 max, 0.966 min
msecs/first-response: 6536.15 mean, 8145.61 max, 4447.28 min
HTTP response codes:
code 200 -- 8
结果说明:
1.8 fetches, 492 max parallel, 216160 bytes, in 10.0001 seconds
说明在上面的测试中运行了8个请求,最大的并发进程数是492,总计传输的数据是216160bytes,运行的时间是10.0001秒
2.27020 mean bytes/connection说明每一连接平均传输的数据量216160/=27020
3.0.799992 fetches/sec, 21615.8 bytes/sec
说明每秒的响应请求为0.799992 ,每秒传递的数据为21615.8bytes/sec
4.msecs/connect: 1.00788 mean, 1.054 max, 0.966 min
说明每连接的平均响应时间是1.00788msecs,最大的响应时间1.054 msecs,最小的响应时间 0.966 msecs
5.msecs/first-response: 6536.15 mean, 8145.61 max, 4447.28 min
6、HTTP response codes: code 200 -- 8 说明打开响应页面的类型,如果403的类型过多,那可能要注意是否系统遇到了瓶颈。
特殊说明:
测试结果中主要的指标是 fetches/sec、msecs/connect 这个选项,即服务器每秒能够响应的查询次数。