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

前端 未结 6 940
不知归路
不知归路 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:42
    1. download jar files from https://jmeter-plugins.org/downloads/file/JMeterPlugins-Standard-1.4.0.zip
    2. extract and copy lib/etx/*.jar to jmeter/lib/etx/
    0 讨论(0)
  • 2020-12-15 15:49

    1)Download standard JMeterPlugins-Standard-1.4.0.zip from http://jmeter-plugins.org/#/

    2)Extract it and go inside extracted folder /lib/ext.

    4)Copy JMeterPlugins-Standard.jar and CMDRunner.jar from /lib/ext to Jmeter/lib/ext

    0 讨论(0)
  • 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
    
    0 讨论(0)
  • 2020-12-15 16:01

    I am using JMeter 3.3 and answers above did not work for me.

    SOLUTION:

    1. Download plugins-manager.jar from https://jmeter-plugins.org/downloads/all/
    2. Put plugins-manager.jar into jmeter/lib/ext
    3. Restart jmeter
    4. Open script, it will ask to download dependencies, press yes.

    Source: https://stackoverflow.com/a/47509713/3915006

    0 讨论(0)
  • 2020-12-15 16:03

    You're using Third Party jmeter-plugins.org plugins.

    You need to add the required jar in lib/ext so that it works.

    Download plugins-manager.jar from here and put it into lib/ext directory, then restart JMeter.

    Note you need to do it each time you upgrade your jmeter version !

    If you're looking to learn jmeter correctly, this book will help you.

    0 讨论(0)
  • 2020-12-15 16:09

    Download plugins-manager.jar and put it into lib/ext directory, then restart JMeter.

    0 讨论(0)
提交回复
热议问题