[Django]gunicorn.errors.HaltServer:

1.3 스타일의 디렉터리 구조의django 프로젝트이기 때문에 실용적인django1.6 작법상 좀 특이하다
환경:centos 6.5,python 2.6,gunicorn (19.1.1),django1.6
오류: gunicorn.errors.HaltServer:
이 오류의 원인은 명령 쓰기 오류나 프로필 오류입니다
올바른 쓰기:
gunicorn  wsgi:application -b 0.0.0.0:8000
gunicorn -b 0.0.0.0:8000 --workers=5 wsgi 
gunicorn -b 0.0.0.0:8000 --workers=5 --log-file error.log wsgi&
이렇게 하면 시동을 걸 수 있다.

프로파일을 사용하여 시작하려면 다음과 같이 하십시오.
gunicorn에서 자주 사용하는 파라미터를 시작합니다. 프로필로
-c 매개 변수:구성 파일
(pyhawk)[root@erya hawk]# cat gun.py 
#coding:utf-8
import multiprocessing 
 
bind = "0.0.0.0:8000"
workers = multiprocessing.cpu_count()*2 + 1

시작:
gunicorn -c gun.py wsgi
gunicorn은django에 대한 좋은 지원을 가지고 있습니다. 더 많은 것은 문서를 참고하십시오.
본 논문은 "orangleliu 노트북"블로그에서 나온 것으로, 전재는 반드시 이 출처를 보존해 주십시오.http://blog.csdn.net/orangleliu/article/details/40895701
작성자: orangleliu

좋은 웹페이지 즐겨찾기