Nginx 에러에러
invalid PID numberinvalid PID number — 잘못된 PID 파일
Nginx PID 파일에 유효하지 않은 프로세스 ID가 포함되어 있습니다.
nginxserver
상세 보기 too many open filesNginx가 열 수 있는 최대 파일 디스크립터 수에 도달했습니다.
worker_rlimit_nofile 한도 또는 시스템의 파일 디스크립터 한도를 초과했습니다. 각 연결은 최소 하나의 파일 디스크립터를 사용합니다.
nginx.conf에서 worker_rlimit_nofile을 늘리세요. ulimit -n 또는 /etc/security/limits.conf로 시스템 한도를 높이세요. 동시 연결 수를 줄이세요.
# In nginx.conf
worker_rlimit_nofile 65535;
# Also increase system limits
# /etc/security/limits.conf
# nginx soft nofile 65535invalid PID numberNginx PID 파일에 유효하지 않은 프로세스 ID가 포함되어 있습니다.
an upstream response is buffered to a temporary file업스트림 응답이 메모리 버퍼를 초과하여 디스크로 버퍼링되고 있습니다.
429 Too Many Requests클라이언트가 지정된 시간 내에 너무 많은 요청을 보냈습니다.
503 Service Unavailable서버가 현재 요청을 처리할 수 없는 상태입니다.
413 Request Entity Too Large요청 본문이 Nginx에서 허용하는 최대 크기를 초과했습니다.
bind() to 0.0.0.0:80 failed (98: Address already in use)Nginx가 요청한 주소와 포트에 바인드할 수 없습니다.