
SSL 인증서가 적용된 서버에 ngrinder-controller-3.5.9-p1.war 버전으로 부하테스트를 할 경우
이미지와 같이 SSLHandshake가 발생하면서 오류가 나옵니다.
스크립트에 아래와 같이 수정을 했는데도 검증 시 계속 ssl 관련 오류가 발생합니다.
어떻게 처리를 해야할까요???
@BeforeProcess
public static void beforeProcess() {
java.lang.System.setProperty("https.protocols", "TLSv1,TLSv1.1,TLSv1.2");
HTTPRequestControl.setConnectionTimeout(6000)
test = new GTest(1, "devwww.pknu.ac.kr")
request = new HTTPRequest()
grinder.logger.info("before process.");
}