Conversion Error when opening JMX file from JMeter 2.7 in JMeter 2.11

前端 未结 6 975
不知归路
不知归路 2020-12-15 15:03

I am trying to open a jmx file written with Apache JMeter 2.7 in the last release Apache JMeter 2.11. I am getting this errors log :

2014/09/10 09:29:44 INFO         


        
6条回答
  •  心在旅途
    2020-12-15 15:56

    For people who are using command line for running JMeter, here is how to install a new plugin.

    After placing the plugin manager jar in the /lib/ext/, download the latest cmdrunner from this URL by changing the version.

    wget http://search.maven.org/remotecontent?filepath=kg/apc/cmdrunner/2.2/cmdrunner-2.2.jar
    

    Copy the cmdrunner to jmeter/lib/ directory

    mv cmdrunner-2.2.jar apache-jmeter-5.1.1/lib/
    

    Execute the following command to generate script file PluginsManagerCMD

    java -cp apache-jmeter-5.1.1/lib/ext/jmeter-plugins-manager-1.3.jar org.jmeterplugins.repository.PluginManagerCMDInstaller
    

    After the script is generated, you can use it to install a particular plugin

    apache-jmeter-5.1.1/bin/PluginsManagerCMD.sh status
    apache-jmeter-5.1.1/bin/PluginsManagerCMD.sh available
    apache-jmeter-5.1.1/bin/PluginsManagerCMD.sh install jpgc-tst=2.5
    

提交回复
热议问题