Getting started with jmeter 1

installation

Go to jmeter's official website, download the zip package, and unzip it into a folder

Go to the jmeter plug-in network and download the manager. jar, put in lib / ext

Stress test tips

Cannot use gui mode for stress testing

table of Contents

bin directory

1) Start file jmeter.bat

2) Log file jmeter.log

3) Server configuration file jmeter-server.bat

4) System configuration file jmeter.properties

docs directory

  Interface document directory. Example C: index.html under \ apache-jmeter-3.0 \ docs \ api, which contains the interface developed by java

extras directory

  Extension plugin directory. Provides support for Ant. Ant can be used to implement automated testing, such as batch script execution, generating html format reports. When the test is running, you can record the test data, jmeter will automatically generate a .jtl file, put the file Go to the extras directory and run "ant -Dtest = filename report" to generate test statistics report.

lib directory

  The plug-in directories used are all jar packages. jmeter will automatically find the required classes in the jmeter_HOME / lib and ext directories. The external jars that JMeter depends on are stored under lib: httpclient.jar, httpcore.jar, httpmime.jar, etc.

  Among them, the core jar packages that Jmeter depends on are stored in the lib \ ext directory. ApacheJMeter_core.jar and ApacheJMeter_java.jar need to be referenced when writing the client. The JMeter plug-in package is also in this directory.

  The junit test script is stored under lib \ junit.

Licenses directory

  jmeter certificate directory

Printable_docs directory

  User manual, example index: html under C: \ apache-jmeter-3.0 \ printable_docs

Guess you like

Origin www.cnblogs.com/seyOrd/p/12748921.html