Java

다음과 같은 오류 발생 - Java 6 + tomcat 7 + thread 25 (=> 800 req / 1 thread) -> 20000 건 처리 시간 63초 

계속 실행하니 다음과 같은 오류가 발생.

INFO: I/O exception (java.net.BindException) caught when processing request to {}->http://127.0.0.1:9443: Address already in use: connect
Jun 3, 2020 10:16:01 AM org.apache.http.impl.execchain.RetryExec execute
INFO: Retrying request to {}->http://127.0.0.1:9443
Jun 3, 2020 10:16:01 AM org.apache.http.impl.execchain.RetryExec execute
INFO: Retrying request to {}->http://127.0.0.1:9443
Jun 3, 2020 10:16:01 AM org.apache.http.impl.execchain.RetryExec execute
INFO: Retrying request to {}->http://127.0.0.1:9443
Jun 3, 2020 10:16:01 AM org.apache.http.impl.execchain.RetryExec execute
INFO: I/O exception (java.net.BindException) caught when processing request to {}->http://127.0.0.1:9443: Address already in use: connect
Jun 3, 2020 10:16:01 AM org.apache.http.impl.execchain.RetryExec execute
INFO: I/O exception (java.net.BindException) caught when processing request to {}->http://127.0.0.1:9443: Address already in use: connect
Jun 3, 2020 10:16:01 AM org.apache.http.impl.execchain.RetryExec execute
INFO: Retrying request to {}->http://127.0.0.1:9443

다음의 글을 보고 해결함

boneman.tistory.com/entry/Jmeter-%EC%98%A4%EB%A5%98javanetBindException-Address-already-in-use-connect

 

어쨋든 이리저리 알아보다 시간날때 읽어볼 글도 하나 찾음

jojoldu.tistory.com/318

 

1. AWS Beanstalk을 이용한 성능 튜닝 시리즈 - DB Connection Pool

안녕하세요 이번 시간에는 AWS Beanstalk을 이용한 웹 어플리케이션 서버 성능 튜닝 시리즈를 시작합니다. 모든 코드는 Github에 있으니 참고하시면 됩니다. 신규 서비스를 출시할때마다 성능 테스트

jojoldu.tistory.com

 

+ Recent posts