How to install jmeter on mac?

We want to use JMeter.

I downloaded the working version as indicated in the user manual at http://jmeter.apache.org/usermanual/get-started.html

But how do I get started and install the software?

I do not know Java and cannot find any instructions on what I should do with the download.

I'm on a Mac.

How do I install a product as a useful program?

+86
performance-testing testing jmeter load-testing
Mar 24 '14 at 13:08
source share
8 answers

The easiest way to install this with Homebrew:

brew install jmeter 

Or if you need plugins:

 brew install jmeter --with-plugins 

And to open it, use the following command (since it does not appear in your Applications):

 open /usr/local/bin/jmeter 
+210
May 20 '14 at
source share

If you want to enable plugins (JMeterPlugins Standard, Extras, ExtrasLibs, WebDriver and Hadoop), use:

brew install jmeter --with-plugins

+100
Oct 30 '14 at 15:11
source share

after

 brew install jmeter 

then

 open /usr/local/bin/jmeter 
+35
Oct 29 '14 at 20:03
source share

After you got the ZIP from the download, extract it locally and with your search device, go to the bin directory.

Then double-click ApacheJMeter.jar to launch the JMeter User Interface .

These and the following steps are described in the entry.

+15
Mar 24 '14 at 13:57
source share
  • Download the apache-Jmeter.zip file
  • Unzip it
  • Open Terminal-> go to apache-Jmeter / bin
  • sh jmeter.sh
+8
Jan 12 '16 at 15:10
source share

Download the latest version (not 2.5.1 or other old ones) from jmeter.apache.org

Unzip file

Make sure you install a JAVA version that is compatible, Java 6 or 7 for JMeter 2.11

In the bin folder, click jmeter.sh, not jar, or do sh./apache-jmeter-xxx/bin/jmeter in the terminal.

xxx is the version you are using.

Finally, at startup, you can choose System Look and experience better integration with Mac OSX. Menu> Options> Appearance> System

+3
Mar 24 '14 at 22:43
source share

You have 2 options:

brew update to update homebrew packages

brew install jmeter to install jmeter

Read this blog to learn how to map folders to the standard version of jmeter to homebrew.

  • Install the standard version that I would advise you. Steps:

    • Install the latest compatible version of the JDK (7 or 8 from JMeter 3.1).

    • Download JMeter from here

    • Unzip the folder and run it from the folder:

bin/jmeter

+3
Mar 11 '17 at 15:13
source share

I am also new to this.
I followed this process to launch the application on Mac:

  1. I downloaded apache-jmeter-3.3_src.zip from http://jmeter.apache.org/download_jmeter.cgi .
  2. I extracted the files, and then moved to the bin folder, and then you can find a file called jmeter , it is an executable file. Right click on it and open it using the terminal and wait 5 minutes for it to.

Thanks, hope this helps.

0
Feb 01 '18 at 11:03
source share



All Articles