jMeter - Environment

JMeter is a framework for Java, so the very first requirement is to have JDK installed in your machine.

System Requirement

JDK1.8 or above.
MemoryNo minimum requirement.
Disk SpaceNo minimum requirement.
Operating SystemNo minimum requirement.

Step 1 − Verify Java Installation

First of all, verify whether you have Java installed in your system. Open your console and execute one of the following java commands based on the operating system you are working on.
OSTaskCommand
WindowsOpen Command Consolec:\> java -version
LinuxOpen Command Terminal$ java -version
MacOpen Terminalmachine: ~ joseph$ java -version
If you have Java installed in your system, you would get an appropriate output based on the OS you are working on.
OSOutput
Windows
java version "1.7.0_25"
Java(TM) SE Runtime Environment (build 1.7.0_25-b15)
Java HotSpot(TM) 64-Bit Server VM (build 23.25-b01, mixed mode)
Linux
java version "1.7.0_25"
Java(TM) SE Runtime Environment (build 1.7.0_25-b15)
Java HotSpot(TM) 64-Bit Server VM (build 23.25-b01, mixed mode)
Mac
java version "1.7.0_25"
Java(TM) SE Runtime Environment (build 1.7.0_25-b15)
Java HotSpot(TM) 64-Bit Server VM (build 23.25-b01, mixed mode)
If you do not have Java installed, install the Java Software Development Kit (SDK) fromhttp://www.oracle.com/technetwork/java/javase/downloads/index.html. We are assuming Java 1.7.0_25 as the installed version for this tutorial.

Step 2 − Set Java Environment

Set the JAVA_HOME environment variable to point to the base directory location, where Java is installed on your machine. For example −
OSOutput
WindowsSet the environment variable JAVA_HOME to C:\Program Files\Java\jdk1.7.0_25
Linuxexport JAVA_HOME=/usr/local/java-current
Macexport JAVA_HOME=/Library/Java/Home
Append Java compiler location to System Path.
OSOutput
WindowsAppend the string; C:\Program Files\Java\jdk1.7.0_25\bin to the end of the system variable, Path.
Linuxexport PATH=$PATH:$JAVA_HOME/bin/
Macnot required
Verify Java Installation using java -version command as explained above.

Step 3 − Download JMeter

Download the latest version of JMeter fromhttp://jmeter.apache.org/download_jmeter.cgi. For this tutorial, we downloaded apache-jmeter-2.9 and copied it into C:\>JMeter folder.
The directory structure should look like as shown below −

  1. apache-jmeter-2.9
  2. apache-jmeter-2.9\bin
  3. apache-jmeter-2.9\docs
  4. apache-jmeter-2.9\extras
  5. apache-jmeter-2.9\lib\
  6. apache-jmeter-2.9\lib\ext
  7. apache-jmeter-2.9\lib\junit
  8. apache-jmeter-2.9\printable_docs

You can rename the parent directory (i.e. apache-jmeter-2.9) if you want, but do not change any of the sub-directory names.

Step 4 − Run JMeter

After downloading JMeter, go to the bin directory. In this case, it is/home/manisha/apache-jmeter-2.9/bin. Now click on the following −
OSOutput
Windowsjmeter.bat
Linuxjmeter.sh
Macjmeter.sh
After a short pause, the JMeter GUI should appear, which is a Swing application, as seen in the following screenshot −
JMeter GUI
This is the main page and the default page of the tool.