无法在JMeter中打开插件管理器

我正在尝试打开JMeter插件管理器,但是由于代理限制,我遇到了异常。我尝试使用插件管理器页面中提到的方法打开插件管理器的方法,但是从命令提示符处收到以下错误:

'JVM'不被识别为内部或外部命令, 可操作的程序或批处理文件。

还有其他方法可以对其进行配置,以便可以访问插件管理器吗?

code8945 回答:无法在JMeter中打开插件管理器

按照Plugins Manager Network Configuration-> Using Behind the Proxy

  

Plugins Manager尊重JMeter's proxy settings

因此将以下行添加到 system.properties 文件(位于JMeter安装的“ bin”文件夹中):

http.proxyHost=IP address or hostname of your proxy server
https.proxyHost=IP address or hostname of your proxy server
http.proxyPort=port of your proxy server
https.proxyPort=port of your proxy server

一旦重新启动JMeter完成更改,您就可以通过公司代理使用HTTP Request采样器,并且Plugins Manager也应该能够与插件存储库建立连接。

更多信息:

,

我已经找到解决方案。我在JMeter的system.properties文件中添加了以下标签:

http.proxyHost=IP address or hostname of your proxy server
https.proxyHost=IP address or hostname of your proxy server
http.proxyPort=port of your proxy server
https.proxyPort=port of your proxy server
http.proxyDomain=Domain for you User and password
https.proxyDomain=Domain for you User and password

有关属性参考,我找到了以下链接: https://jmeter.apache.org/usermanual/properties_reference.html#proxy_config

转到Domain标记的主题19.20。

此后,我在命令提示符下启动了jmeter,并为用户名添加了-u参数,为密码提供了-a参数。现在,我可以打开插件管理器了。

本文链接:https://www.f2er.com/3159422.html

大家都在问