yum install https://extras.getpagespeed.com/release-el7-latest.rpm
yum install wrk
1) get请求
wrk -d 60 -c 10000 -t 32 'http://www.baidu.com'
-d 持续时间
-c 并发数
-t 线程数
2) post请求
# 新建一个lua脚本
touch post.lua
----------------------------------------------
wrk.method = "POST"
wrk.headers["Content-Type"] = "application/x-www-form-urlencoded"
wrk.body = "aaa=111&bbb=2222"
----------------------------------------------
# 压测
wrk -d 60 -c 100 -t 32 -s post.lua 'http://www.baidu.com'