문제
gunicorn 명령어로 gunicorn을 실행하면 잘 되는데, gunicorn.conf를 통해서 gunicorn을 실행하면 잘 되지 않는다.
pyenv 문제인 것 같아서 virtualenv로 실생시켰는데 동일한 문제 발생
해결책
일단 –daemon으로 background에서 실행시킴
~/myenv/bin/gunicorn --workers 3 --bind unix:/home/soma/gcf/gcf.sock config.wsgi:application --chdir /home/soma/gcf --daemon
이러면 백그라운드에서 실행은 된다. 추후 init
에서 gunicorn.conf
로 실행시키는 방법도 연구해봐야 할듯.
참고: https://github.com/kimyu92/wc-code-sample/blob/master/README.md
'backend > python' 카테고리의 다른 글
python: check if variable exists in python (0) | 2018.05.11 |
---|---|
파이썬에서 실행 시간 체크하기 (check executed time in python) (0) | 2017.12.28 |
파이썬으로 audio 파일 다루기 - pydub (5) | 2017.10.16 |
PIL (python image library, pillow) 사용해서 dpi, image size 변경 (0) | 2017.10.14 |
Python으로 docx 파일을 다루자 - Python-docx (0) | 2017.10.13 |