每次使用J Meter进行Web测试时,都会收到“未知主机异常”。我只能访问公司中的https网站,并且不允许更改代理设置,因为在我的办公室已禁用它。
答案 0 :(得分:0)
您无需更改计算机代理设置即可使用JMeter,您需要make JMeter aware of your company proxy
这些选项位于:
您可以通过command-line options 每次运行JMeter 来传递公司代理设置,例如:
jmeter -H your_corporate_proxy_host -P your_corporate_proxy_port
您可以将以下行添加到JMeter system.properties file(位于JMeter安装的“ bin”文件夹中)
http.proxyHost=your_corporate_proxy_host
https.proxyHost=your_corporate_proxy_host
http.proxyPort=your_corporate_proxy_port
https.proxyPort=your_corporate_proxy_port
用公司代理的真实值替换your_corporate_proxy_host
和your_corporate_proxy_port
(如果您不知道详细信息,请与网络管理员联系)