0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

UbuntuのEC2にJMeterをインストールし、CLI上で負荷試験を実行するまで

Last updated at Posted at 2024-04-04

この記事について

  • JMeterを利用する機会があったので、必要最低限の実施事項を記載します
  • EC2の立ち上げや、シナリオの作成については省略します

利用するAMI

  • Ubuntu 22.04を利用します

image.png

起動後

JDKのインストール

cd /home/ubuntu
# install JDK
wget -O - https://apt.corretto.aws/corretto.key | sudo gpg --dearmor -o /usr/share/keyrings/corretto-keyring.gpg && \
echo "deb [signed-by=/usr/share/keyrings/corretto-keyring.gpg] https://apt.corretto.aws stable main" | sudo tee /etc/apt/sources.list.d/corretto.list
sudo apt-get update; sudo apt-get install -y java-17-amazon-corretto-jdk

参考:Amazon Corretto 17 Installation Instructions for Debian-Based, RPM-Based and Alpine Linux Distributions

JMeterのインストール

# install JMeter
wget https://downloads.apache.org//jmeter/binaries/apache-jmeter-5.6.tgz
tar -xvzf apache-jmeter-5.6.tgz

参考:Download Apache JMeter

任意の実施事項

ヒープメモリの設定

  • Uncaught Exception java.lang.OutOfMemoryErrorとなる事があるので、場合によっては調整が必要
  • jmeterインストールディレクトリ(今回だと/home/ubuntu/apache-jmeter-5.6/bin)内のjmeterファイルの以下を編集
# system's memory availability:
: "${HEAP:="-Xms1g -Xmx1g -XX:MaxMetaspaceSize=256m"}"

Windowsの場合はjmeter.bat、Linuxの場合はjmeterファイルの修正が必要です。

参考:1.4 Running JMeter

※実際にJMeter起動中にtopコマンドを叩くと、VIRTが増えている事が確認できます

テスト用ディレクトリの作成

  • GUIで作成したtest.jmxファイルと、ログファイル用にディレクトリを作成
  • スレッド数など、適宜test.jmxファイル内の記載は調整
cd /home/ubuntu
mkdir load-test

負荷試験を実行

cd /home/ubuntu/apache-jmeter-5.6/bin
./jmeter -n -t /home/ubuntu/load-test/test.jmx -l /home/ubuntu/load-test/test-log.jtl

CLIモードのオプション

  • -n
    • JMeterがcliモードで実行されることを指定
  • -t
    • 実行ファイル名を指定
  • -l
    • サンプル結果を記録するファイルを指定

参考:1.4.4 CLI Mode (Command Line mode was called NON GUI mode)

0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?