LoginSignup
0
1

More than 1 year has passed since last update.

AlmaLinux8.3+JMeter5.4.1インストール手順

Posted at

やりたいこと

  • AlmaLinux8.3にJMeterをインストールしたい。

前提

  • VirtualBox + AlmaLinux8.3 が最小構成以上でインストール済みであること。
  • root権限でSSH接続できること。

事前準備

https://jmeter.apache.org/download_jmeter.cgi
にて、JMeterのBinariesの最新バージョンを確認しておく。

https://mirrors.advancedhosters.com/apache//jmeter/binaries/apache-jmeter-5.4.1.tgz

インストール

sysctl -w net.ipv6.conf.all.disable_ipv6=1
yum update -y
yum install -y java
cd /opt/
yum install -y wget
wget https://mirrors.advancedhosters.com/apache//jmeter/binaries/apache-jmeter-5.4.1.tgz
yum install -y tar
tar zxvf apache-jmeter-5.4.1.tgz
yum -y install vim-enhanced
vim ~/.bashrc
# Jmeter
PATH=$PATH:$HOME/bin:/opt/apache-jmeter-5.4.1/bin
source ~/.bashrc
which jmeter
jmeter --version

image.png

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1