본문 바로가기
WEB,WAS/Nginx

[Nginx]upstream timed out, no live upstreams

by Rainbound-IT 2023. 1. 12.
반응형

reverse proxy로 nginx 사용하고 있는데

어느날 갑자기 도메인 연결이 안되었다.

에러 로그를 보니 

upstream timed out, no live upstreams

이었다.

 

 

 

no live upstreams while connecting to upstream 에 대한 설명 및 해결 - 최대 실패횟수와 사용시간불능 시간조절

https://brunch.co.kr/@alden/58

 

nginx no live upstream 에러 이해하기

Linux OpenSource | 글 발행 후 새롭게 확인된 사실이 있어 업데이트 합니다!! nginx를 리버스 프록시로 운영하다 보면 다양한 이슈를 만나게 됩니다. 오늘은 그중에서 no live upstream 에러에 대해서 이

brunch.co.kr

비슷한거

https://serverfault.com/questions/886543/502-bad-gateway-on-nginx

 

502 Bad Gateway on Nginx

We currently have a web app built to run on an angular framework on Nginx running on Ubuntu 1.10.3. The error log for an attempt to access the site is: 30364#30364: 1000 worker_connections are not

serverfault.com

 

다른방법

https://itecnotes.com/server/nginx-no-live-upstreams-while-connecting-to-upstream/

 

Nginx : no live upstreams while connecting to upstream – Valuable Tech Notes

502 bad gateway error displayed when switching between site pages and some times on home page but not for the first request on the home page it is only when another page redirect to it. and it happens for some javascript files load balancing configured on

itecnotes.com

 

원인을 우선적으로 찾는게 중요하다 

내 경우는 upstream 서버가 무거워서 응답하는데 시간이 오래걸릴거라 생각하여 

upstream timed out으로 검색

location에 다음을 추가하였다.

proxy_read_timeout 300s;
proxy_connect_timeout 75s;

참고

https://donghunee.github.io/study/2020/01/02/nginx/

 

[Nginx] upstream timed out 해결 방법

앱잼을 하면서 간혹가다 502에러가 뜰 때가 있었다..

donghunee.github.io

 

반응형

'WEB,WAS > Nginx' 카테고리의 다른 글

nginx ssl 갱신 설정  (0) 2023.05.31
nginx forbidden 403 error 에러  (0) 2023.02.16
nginx 업로드 파일 size 변경  (0) 2023.02.08
nginx 압축전송  (0) 2023.01.30
Nginx 에서 환경변수를 지원할까요?  (0) 2022.12.19

댓글