Directory structure of Jmeter

 You have to understand these things first, and then you can quickly find some configuration files to modify (for example, changing the configuration is just one of them)

1. Bin directory
examples: There are CSV examples in the directory

jmeter.bat windows startup file

jmeter.log jmeter running log file

jmeter.sh linux startup file

jmeter.properties system configuration file

jmeter-server.bat server configuration for windows distributed test

jmeters-server linux distributed test server configuration

The SSL settings in the system configuration file focus on the following:

# Specify HTTPS protocol layer

https.default.protocol=TLS

# Specify the SSL version
https.default.protocol=SSLv3

# Set the started protocol
https.socket.protocols=SSLv2Hello SSLv3 TLSv1

# Cache control, control whether SSL can be reused in multiple iterations
https.use.cached.ssl.context=true

Two, docs directory

  Interface documentation directory. Example C: index.html under \apache-jmeter-3.0\docs\api

Three, extras directory

  Extension plug-in directory. Provides support for Ant, you can use Ant to achieve automated testing, such as batch script execution, generate html format reports, test data can be recorded when the test is running, jmeter will automatically generate a .jtl file, and place the file Go to the extras directory and run "ant -Dtest=file name report" to generate test statistics reports.

Fourth, the 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 in lib: httpclient.jar, httpcore.jar, httpmime.jar, etc.

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

  The junit test script is stored under lib\junit.

Five, Licenses directory

  jmeter certificate directory

Six, Printable_docs directory

  User manual, such as index.html under C:\apache-jmeter-3.0\printable_docs

Original link: http://www.cnblogs.com/zichuan/p/6938772.html , Author: ZZZ Purple River

Guess you like

Origin blog.csdn.net/LYX_WIN/article/details/108657837