找不到gunicorn.socket的工作

时间:2019-06-28 19:46:53

标签: django sockets nginx python-3.6 gunicorn

我正在尝试在digitalocean上为我的django网站设置gunicorn,但是

    sudo systemctl start gunicorn.socket

回复为“为gunicorn.socket失败的作业”。 我已经仔细检查了拼写错误或目录路径问题。

我一直在关注本教程-https://www.digitalocean.com/community/tutorials/how-to-set-up-django-with-postgres-nginx-and-gunicorn-on-ubuntu-18-04

filepath = /etc/systemd/system/gunicorn.service

[Unit]
Description=gunicorn daemon
Requires=gunicorn.socket
After=network.target

[Service]
User=myuser
Group=www-data
WorkingDirectory=/home/myuser/profile_website
ExecStart=/home/myuser/profile_website/myenv/bin/gunicorn \
          --access-logfile - \
          --workers 3 \
          --bind unix:/run/gunicorn.sock \
          project2.wsgi:application

[Install]
WantedBy=multi-user.target

filepath = /etc/systemd/system/gunicorn.socket

[Unit]
Description=gunicorn socket

[Socket]
ListenStream=/run/gunicorn.sock

[Install]
WantedBy=sockets.target

我已经尝试重新启动gunicorn.socket,但是没有用。

0 个答案:

没有答案