NeNoVen Posted on Oct 10, 2023 Jmeter 테스트 #jmeter #performance #testing 로컬에서 분산 테스트를 위한 설정(마스터) Jmeter.properties 수정 # 슬레이브 설정 # Remot Hosts - comma delimited remote_hosts=localhost:1099,localhost:1100 # ip or domain Enter fullscreen mode Exit fullscreen mode 로컬에서 분산 테스트를 위한 설정(슬레이브) jmeter-server.bat 복사하여 jmeter-server1.bat,jmeter-server2.bat 생성 jmeter-server1.bat, jmeter-server2.bat 수정 # 1번 슬레이브 @echo off set SERVER_PORT=1099 # 2번 슬레이브 @echo off set SERVER_PORT=1100 Enter fullscreen mode Exit fullscreen mode 로컬에서 실행 (마스터) # 로컬 테스트 $ jmeter -n -t 스크립트명.jmx -R localhost:1099,localhost:1100 Enter fullscreen mode Exit fullscreen mode 스크립트구성 Thread Group 우클릭 >Sampler>HTTP Request 추가 Http Request 우클릭 > Add> Listener> Summary Report, View Results Tree 추가 Top comments (0) Subscribe Personal Trusted User Create template Templates let you quickly answer FAQs or store snippets for re-use. Submit Preview Dismiss Code of Conduct • Report abuse Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment's permalink. Hide child comments as well Confirm For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)