Detailed explanation of how to run jmeter under Linux system and optimize local memory

Detailed explanation of how to run jmeter under Linux system and optimize local memory

1. Install the cross-system file transfer tool under Linux system

Enter yum -y install lrzsz in the root directory of the root user

2. Upload the apache-jmeter-4.0zip package to the root directory of the Linux system using the rz command and decompress it

3. Configure jmeter environment variables vim /etc/profile add export PATH=/apache-jmeter-4.0/bin/:$PATH Note the path

4. Use the rz command to upload the jdk1.8 linux 64-bit version and unzip it to the usr/local directory

Download the jdk installation package Download address: https://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html

5. After decompression, configure the environment variables and enter the etc directory to edit the profile file using the vim command vim /etc/profile

Add at the end

JAVA_HOME=/usr/local/jdk1.8.0_151/
PATH=$JAVA_HOME/bin:$PATH
CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
export JAVA_HOME
export PATH
export CLASSPATH

6. After the modification is successful, use the command to make the configuration file take effect immediately source /etc/profile

7. After the configuration is completed, use jmeter -v to prove that the environment is set up OK

8. Linux: In the Linux environment, you need to modify the number of concurrency and execution time on the Windows jmeter, save the jmx file, and then pass it to Linux to run it with the jmeter -n -t test.jmx -l test.jtl command.

Memory tuning is configured in the jmeter.sh file (the last line of java $JVM_ARGS -Xms1G -Xmx5G -XX:MaxPermSize=4096m -Dapple.laf.useScreenMenuBar=true -jar).

Prevent jmeter from generating hprof log files in the jmeter file configuration (line 88 HEAP="-Xms1024m -Xmx10240m")

9. After giving the permissions, upload the test.jmx stress test script. After uploading, you also need to give this file executable permissions, chmod 775 test.jmx, and then ls. When the script color is green, it indicates that it is an executable file.

10. All is ready, ./startagent.sh starts monitoring;

11. ./jmeter -n -ttest.jmx -l test.jtl Start the stress test script to start stress testing

-n means no GUI interface, -t means script,

-l means generate jtl

12. The screen appears, indicating that the execution has started. The screen "end of run" indicates that the execution is complete.

13.jmeter 3.0 and above provide graphical html reports. After the run is completed, execute the command:

jmeter -g test.jtl -o resultreport generates html report

parameter:
-g : result.jtl The path to an existing .jtl file.
-o : Directory for storing HTML reports

14. Then resultreport is the generated report folder, download it and view the analysis;

Note: If you need to modify the number of users or time in the test plan, you can execute

vi script name to modify

Okay, that's all for today. If you have time later, I will write a document about how to analyze HTML reports.

This is the end of this article about how to run jmeter under Linux system and how to tune local memory. For more information about how to run jmeter under Linux system, please search previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Jmeter custom function base64 encryption implementation process analysis
  • Detailed explanation of Jmeter post file upload implementation process
  • Jmeter generates UUID as a unique identifier process diagram
  • How to set dynamic parameters in Jmeter command line script execution
  • Jmeter configuration proxy to achieve recording process diagram
  • Jmeter implements MD5 encryption for interface test input
  • Solution to the error problem of obtaining parameter token when logging in to Jmeter interface
  • How to run jmx scripts based on command line in Jmeter
  • Summary of Jmeter common function usage

<<:  5 ways to make your JavaScript codebase cleaner

>>:  Detailed explanation of MySQL monitoring tool mysql-monitor

Recommend

Learn the basics of nginx

Table of contents 1. What is nginx? 2. What can n...

Getting Started with CSS3 Animation in 10 Minutes

Introduction Animation allows you to easily imple...

Example of using CSS to achieve floating effect when mouse moves over card

principle Set a shadow on the element when hoveri...

5 JavaScript Ways to Flatten Arrays

Table of contents 1. Concept of array flattening ...

After reading the introduction of CSS box model, you will not be confused

The property names often heard in web design: con...

Three common uses of openlayers6 map overlay (popup window marker text)

Table of contents 1. Write in front 2. Overlay to...

Use non-root users to execute script operations in docker containers

After the application is containerized, when the ...

How to configure nginx+php+mysql in docker

First, understand a method: Entering a Docker con...

SQL insert into statement writing method explanation

Method 1: INSERT INTO t1(field1,field2) VALUE(v00...

JavaScript canvas text clock

This article example shares the specific code of ...

Detailed explanation of JavaScript Promise and Async/Await

Table of contents Overview Four examples Example ...

Detailed explanation of the usage and differences of MySQL views and indexes

MySQL Views Simply put, a MySQL view is a shortcu...

How to use the markdown editor component in Vue3

Table of contents Install Importing components Ba...

Tomcat common exceptions and solution code examples

The company project was developed in Java and the...