HTTPS端点上的自动中心

时间:2011-11-13 04:36:19

标签: ssl https load-testing httperf autobench

如何在autobench中设置我正在测试HTTPS(端口443)网址?

当我打电话给:

autobench --single_host --host1 host.com --port1 443 --uri1 /hello --num_conn 1000 --timeout 5 --low_rate 10 --high_rate 50 --rate_step 10 --num_call 10 --quiet --file results.tsv

它显示:

httperf.parse_status_line: invalid status line `<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">'!!
httperf.parse_status_line: bad status 1

哪个不正确,因为HTTPS页面(在上面的示例中为https://host.com/hello)会返回有效的200 OK响应。

由于

1 个答案:

答案 0 :(得分:3)

您需要将以下行添加到~/.autobench.conf文件中:

httperf_ssl = NULL

--sslhttperf的命令行参数,其下面是自动中心调用。 NULL值表示不将该arg的值传递给httperf

一般来说,您可以将任何其他命令行参数添加到httperf,方法是将它们放在配置文件中,并在httperf_前加上它们。另一个例子:

httperf_add-header = "Authorization: Basic Zm9vOmJhcg=="

相当于运行httperf --add-header "Authorization: Basic Zm9vOmJhcg=="