#現状
Djangoで作成したアプリとデプロイした後、
502 Bad GatewayとWEBに表示されてしまったため、
nginxとgunicornの再起動を試しました。
Nginxは起動できましたが、gunicornが起動しません。
#エラー内容
$ systemctl status gunicorn ● gunicorn.service - gunicorn daemon Loaded: loaded (/etc/systemd/system/gunicorn.service; disabled; vendor preset: enabled) Active: failed (Result: exit-code) since Mon 2020-10-12 00:57:02 UTC; 12min ago Process: 1948 ExecStart=/home/ubuntu/boardproject/boardprojectenv/bin/gunicorn --access-logfile - --workers 3 --bind unix:/run/gunicorn.sock boa Main PID: 1948 (code=exited, status=1/FAILURE) Oct 12 00:57:01 ip-172-31-5-157 gunicorn[1948]: File "/home/ubuntu/boardproject/boardprojectenv/lib/python3.6/site-packages/gunicorn/arbiter.py" Oct 12 00:57:01 ip-172-31-5-157 gunicorn[1948]: self.reap_workers() Oct 12 00:57:01 ip-172-31-5-157 gunicorn[1948]: File "/home/ubuntu/boardproject/boardprojectenv/lib/python3.6/site-packages/gunicorn/arbiter.py" Oct 12 00:57:01 ip-172-31-5-157 gunicorn[1948]: raise HaltServer(reason, self.WORKER_BOOT_ERROR) Oct 12 00:57:01 ip-172-31-5-157 gunicorn[1948]: gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3> Oct 12 00:57:02 ip-172-31-5-157 systemd[1]: gunicorn.service: Main process exited, code=exited, status=1/FAILURE Oct 12 00:57:02 ip-172-31-5-157 systemd[1]: gunicorn.service: Failed with result 'exit-code'. Oct 12 00:57:02 ip-172-31-5-157 systemd[1]: gunicorn.service: Start request repeated too quickly.
#試したこと
「ps aux | grep gunicorn」の後に「sudo pkill gunicorn」を
実行してみましたが、削除することが出来ませんでした。
ubuntu 2101 0.0 0.1 14852 1008 pts/0 S+ 01:10 0:00 grep --color=auto gunicorn ↑ここの数字が増えるだけ
#最後に
サーバーの再起動もしましたが、改善しません。
対処方法を教えてくださいますと助かります。
#追記
下記のコードを実行したところ、gunicornのサービスが無効になっていました。
起動方法はわからずのままです。
$ sudo systemctl list-unit-files | grep gunicorn gunicorn.service disabled gunicorn.socket enabled
サービス以前に、シェルのコマンドラインから、エラーなく起動できることは確認できていますか?
それと、journalctl -u gunicorn 等でログを詳細に確認してみてください。
回答1件
あなたの回答
tips
プレビュー