1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

DockerでjMeterを使う方法

Posted at

環境

Mac

注意点

・ローカル環境とjMeterを繋げるのが困難
・よくremote Desktopが落ちる
・文字化けが発生することがある

手順

(1) Microsoft Remote Desktopを事前にインストールする
https://apps.microsoft.com/store/detail/microsoft-%E3%83%AA%E3%83%A2%E3%83%BC%E3%83%88-%E3%83%87%E3%82%B9%E3%82%AF%E3%83%88%E3%83%83%E3%83%97/9WZDNCRFJ3PS?hl=ja-jp&gl=jp

(2) docker imageをpullしてくる

docker pull guitarrapc/jmeter-gui

(3) docker-compose.ymlファイルを作成する

version: "3"
services:
  web:
    image: guitarrapc/jmeter-gui:latest
    tty: true
    volumes:
      - ./scenario/:/root/jmeter/
    ports:
      - 5900:5900
      - 3390:3389

(4) docker-compose.ymlを起動する
(5) Microsoft Remote Desktopを起動
新しくPC追加。
PC Nameは「localhost:3390」

スクリーンショット 2022-11-15 17.42.11.png

(6) ユーザー名、パスはroot

(7) jMeterが起動済なので、操作する

参考URL

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?