nginx: [warn] 1024 worker_connections exceed open file resource limit: 256

1132 단어 nginxlinuxmac
유 닉 스 버 전: MacBook Air.
nginx 시작,
nginx: [warn] 1024 worker_connections exceeve open file resource limit: 256, 오류 가 발생 했 을 때.
worker_connections: 
단일 배경 worker process 프로 세 스 의 최대 병렬 링크 수 workerconnections;
open file resource limit: 
Liux 에서 process 가 열 수 있 는 파일 핸들 수;
nginx config:
...
worker_processes  1;
error_log /var/log/nginx/error.log warn;
pid /var/log/nginx/nginx.pid;
events {
    worker_connections  1024;
}
...
콘 솔 실행:
ulimit - a, 빨간색 글자 의 변 수 를 1024 로 바 꾸 면 됩 니 다. 명령 을 사용 하 십시오.
ulimit -n 1024。
core file size          (blocks, -c) 0
data seg size           (kbytes, -d) unlimited
file size               (blocks, -f) unlimited
max locked memory       (kbytes, -l) unlimited
max memory size         (kbytes, -m) unlimited
open files                      (-n) 256
pipe size            (512 bytes, -p) 1
stack size              (kbytes, -s) 8192
cpu time               (seconds, -t) unlimited
max user processes              (-u) 709
virtual memory          (kbytes, -v) unlimited

좋은 웹페이지 즐겨찾기