| <?xml version="1.0"?> |
| <!-- |
| ~ Licensed to the Apache Software Foundation (ASF) under one or more |
| ~ contributor license agreements. See the NOTICE file distributed with |
| ~ this work for additional information regarding copyright ownership. |
| ~ The ASF licenses this file to you under the Apache License, Version 2.0 |
| ~ (the "License"); you may not use this file except in compliance with |
| ~ the License. You may obtain a copy of the License at |
| ~ |
| ~ http://www.apache.org/licenses/LICENSE-2.0 |
| ~ |
| ~ Unless required by applicable law or agreed to in writing, software |
| ~ distributed under the License is distributed on an "AS IS" BASIS, |
| ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| ~ See the License for the specific language governing permissions and |
| ~ limitations under the License. |
| --> |
| |
| <!DOCTYPE document[ |
| <!ENTITY sect-num '25'> |
| <!ENTITY hellip "…" > |
| ]> |
| |
| <document next="jmeter_proxy_step_by_step.html" id="$Id$"> |
| |
| <properties> |
| <author email="dev@jmeter.apache.org">JMeter developers</author> |
| <title>Apache JMeter Distributed Testing Step-by-step</title> |
| </properties> |
| |
| <body> |
| |
| <section name="§-num;. Apache JMeter Distributed Testing Step-by-step" anchor="distributed-testing"> |
| |
| <p> |
| This short tutorial explains how to use multiple systems to perform stress testing. Before we start, there are a couple of things to check. |
| </p> |
| |
| <ul> |
| <li>the firewalls on the systems are turned off or correct ports are opened.</li> |
| <li>all the clients are on the same subnet.</li> |
| <li>the server is in the same subnet, if <code>192.x.x.x</code> or <code>10.x.x.x</code> IP addresses are used. |
| If the server doesn't use <code>192.xx</code> or <code>10.xx</code> IP address, there shouldn't be any problems.</li> |
| <li>Make sure JMeter can access the server.</li> |
| <li>Make sure you use the same version of JMeter and Java on all the systems. Mixing versions will not work correctly.</li> |
| <li>You have <a href="remote-test.html#setup_ssl">setup SSL for RMI</a> or disabled it.</li> |
| </ul> |
| |
| <p> |
| Once you've made sure the systems are ready, it's time to setup remote testing. The tutorial assumes you already |
| have JMeter installed on all the systems. The way JMeter works is one controller node initiates the test on multiple worker nodes. |
| </p> |
| |
| <note>In this tutorial we use GUI Mode just for demonstration. In real life you should use CLI mode (NON GUI) to start your load test</note> |
| |
| <figure width="610" height="462" image="distributed-jmeter.svg">One controller node with multiple worker nodes</figure> |
| |
| <subsection name="§-num;.1 Terminology" anchor="terminology"> |
| |
| <p> |
| Before we dive into the step-by-step instructions, it's a good idea to define the terms and make sure the definition is clear. |
| </p> |
| |
| <dl> |
| <dt>Controller Node</dt><dd>the system running JMeter GUI, which controls the test</dd> |
| <dt>Worker Node</dt><dd>the system running <code>jmeter-server</code>, which takes commands from |
| the GUI and send requests to the target system(s)</dd> |
| <dt>Target</dt><dd>the webserver we plan to stress test</dd> |
| </dl> |
| |
| <figure width="602" height="360" image="distributed-names.svg">Categories of systems</figure> |
| |
| </subsection> |
| |
| <subsection name="§-num;.2 Step-by-Step" anchor="step-by-step"> |
| |
| <ol> |
| <li>On the worker nodes, go to <code>jmeter/bin</code> directory and execute |
| <code>jmeter-server.bat</code> (<code>jmeter-server</code> on unix). |
| </li> |
| <li>On controller node acting as the console, open windows explorer and go to |
| <code>jmeter/bin</code> directory</li> |
| <li>Open <code>jmeter.properties</code> in a text editor</li> |
| <li>Edit the line <code>remote_hosts=127.0.0.1</code></li> |
| <li>Add the IP address. For example, if I have JMeter server running on <code>192.168.0.10</code>, |
| …, <code>192.168.0.15</code>, the entry would look like this: |
| <source>remote_hosts=192.168.0.10,192.168.0.11,192.168.0.12,192.168.0.13,192.168.0.14</source> |
| </li> |
| <li>Start JMeter.</li> |
| <li>Open the test plan you want to use</li> |
| </ol> |
| |
| <figure width="483" height="266" image="example-simple-plan.png">Simple test plan</figure> |
| |
| </subsection> |
| |
| <subsection name="§-num;.2 Starting the Test" anchor="starting"> |
| |
| <p> |
| At this point, you are ready to start load testing. If you want to double check |
| the worker nodes are working, open <code>jmeter.log</code> in your editor. You should see the following in the log. |
| </p> |
| |
| <source> |
| Writing log file to: /XXXX/XXXXX/bin/jmeter-server.log |
| Created remote object: UnicastServerRef [liveRef: [endpoint:[192.X.X.X:XXXXX](local),objID:[-6a665beb:15a2c8b9419:-7fff, 3180474504933847586]]] |
| </source> |
| |
| <p> |
| If you do not see this message, it means <code>jmeter-server</code> did not start correctly. For tips on |
| debugging the issue, <a href="#tips">go to the tips section</a>. There are two ways to |
| initiate the test: a single system and all systems. |
| </p> |
| |
| </subsection> |
| |
| <subsection name="§-num;.3 Start a single clients" anchor="start-single-client"> |
| |
| <ol> |
| <li>Click Run at the top</li> |
| <li>Select Remote Start</li> |
| <li>Select the IP address</li> |
| </ol> |
| |
| <figure width="490" height="196" image="example-remote-start.png">Start a single worker node</figure> |
| |
| </subsection> |
| |
| <subsection name="§-num;.4 Start all clients" anchor="start-all-clients"> |
| |
| <ol> |
| <li>Click Run at the top</li> |
| <li>Select Remote Start all or use <keycombo><keysym>Ctrl</keysym><keysym>Shift</keysym><keysym>R</keysym></keycombo></li> |
| </ol> |
| |
| <figure width="410" height="155" image="example-remote-start-all.png">Start all worker nodes</figure> |
| |
| </subsection> |
| |
| <subsection name="§-num;.5 Limitations" anchor="limitations"> |
| |
| <p> |
| There are some basic limitations for distributed testing. Here's the list of the known items in no specific order. |
| </p> |
| |
| <ol> |
| <li>RMI cannot communicate across subnets without a proxy; therefore neither can JMeter without a proxy.</li> |
| <li>Since version 2.9, JMeter sends all the test results stripping Response data to the controlling console, this allows |
| us to reduce impact on network IO. Ensure you monitor your network traffic so that this traffic does not incur contention</li> |
| <li>A single JMeter client running on a 2-3 GHz CPU (recent CPU) can handle 1000-2000 threads depending on the type of test.</li> |
| </ol> |
| |
| </subsection> |
| |
| <subsection name="§-num;.6 Additional resources" anchor="additional-resources"> |
| |
| <p> |
| <a href="https://cwiki.apache.org/confluence/display/JMETER/JMeterFAQ#JMeterFAQ-Howtodoremotetestingthe'properway'?">Wiki page on remote testing</a> |
| </p> |
| |
| <p> |
| <a href="remote-test.html">Remote Testing in the user manual</a> |
| </p> |
| |
| </subsection> |
| |
| <subsection name="§-num;.7 Tips" anchor="tips"> |
| |
| <p> |
| In some cases, the firewall may still be blocking RMI traffic. |
| </p> |
| |
| <h3>Anti Virus and Firewall</h3> |
| |
| <note>Antivirus should be stopped during a Load Test as it can drastically impact timings leading to wrong results.</note> |
| <p> |
| Firewall needs to be stopped from windows services or at least some ports need to be opened. |
| </p> |
| |
| <ol> |
| <li>Open control panel</li> |
| <li>Open administrative tools</li> |
| <li>Double click services</li> |
| <li>Go to down to Symantec anti virus, right click and select stop</li> |
| </ol> |
| |
| <h3>Windows firewall</h3> |
| |
| <ol> |
| <li>Open network connections</li> |
| <li>Select the network connection</li> |
| <li>Right click and select properties</li> |
| <li>Select advanced tab</li> |
| <li>Uncheck internet connection firewall</li> |
| </ol> |
| |
| <h3>Linux</h3> |
| |
| <p> |
| On Linux, iptables might be turned on by default. For instructions, please refer to the |
| <a href="remote-test.html">Remote Testing in the user manual</a> |
| </p> |
| |
| <p> |
| On RedHat (or derivatives), iptables is turned on by default. Execute |
| <source>service iptables stop</source> |
| to stop the Linux firewall or ensure you open the correct ports. |
| </p> |
| |
| </subsection> |
| |
| </section> |
| |
| </body> |
| |
| </document> |