개발경험 및 메모/Netty
Netty - handshake timed out 에러 (2)
현재까지 정확한 원인을 찿지는 못했다. 대략 250의 클라이언트 데몬이 1개 서버데몬으로 접근하고 있는 상태.. 부하가 생겨서 Waiting을 하다가 time out 나는 거 말고는 다른 것을 추측할수가 없었다. 그래서 우선 서버쪽에 옵션을 주기로 하였다. public static void runServer() throws Exception { SelfSignedCertificate ssc = new SelfSignedCertificate(); SslContext sslCtx = SslContextBuilder.forServer(ssc.certificate(), ssc.privateKey()) .build(); bossGroup = new NioEventLoopGroup(1); workerGroup = ..
2020. 7. 3. 08:45
최근댓글