Let's prepare the environment of JMeter on Mac. You'll also need to install Java, but Homebrew makes it easy. (Note: Homebrew is a prerequisite.)
openjdk 14.0.1 2020-04-14
Install using Homebrew.
#brew update
% brew update
#java install
% brew cask install java
% /usr/libexec/java_home -V
Matching Java Virtual Machines (1):
14.0.1, x86_64: "OpenJDK 14.0.1" /Library/Java/JavaVirtualMachines/openjdk-14.0.1.jdk/Contents/Home
/Library/Java/JavaVirtualMachines/openjdk-14.0.1.jdk/Contents/Home
# .bash_OK only if there is no profile
% touch ~/.bash_profile
% export PATH=$PATH:/Library/Java/JavaVirtualMachines/openjdk-14.0.1.jdk/Contents/Home/bin
% export JAVA_HOME=/Library/Java/JavaVirtualMachines/openjdk-14.0.1.jdk/Contents/Home
# bash_Reflect profile update
% source ~/.bash_profile
% java --version
openjdk 14.0.1 2020-04-14
OpenJDK Runtime Environment (build 14.0.1+7)
OpenJDK 64-Bit Server VM (build 14.0.1+7, mixed mode, sharing)
JMeter
Download from Apache JMeter. If there is no problem with mirrors as it is, there seems to be no problem. (Lol) This time I downloaded the source zip.
Unzip the download zip and run jmeter to start JMeter.
It is OK if the following screen opens.
-Install java with Homebrew -[Illustration] How to use JMeter for the first time
Recommended Posts