ab压测基本命令

ab [options] url

options.

-n 请求数量
-c 并发数
-H 请求头
-p POST请求的请求数据
-T post数据所使用的Content-Type头信息,例如 -T 'application/x-www-form-urlencoded'

GET

e.g :
// 注意 如果需要携带参数必须把url用引号引起来 不然识别不到&
ab -n 10000 -c 10 -H “Cookie:123” “https://test.com?a=1&b=2”

POST

ab -n 100 -c 10 -p 'post.txt' -T 'application/x-www-form-urlencoded' 'http://test.api.com/ttk/auth/info/‘

你可能感兴趣的:(ab压测基本命令)