当前位置:  开发笔记 > 后端 > 正文

Gunicorn Upstart文件无法启动

如何解决《GunicornUpstart文件无法启动》经验,为你挑选了0个好方法。

我正在尝试启动一个应用程序,gunicorn并且nginx不得不重复删除和更改文件几次.这一次,我遇到了问题.

我首先创建了一个upstart文件......

sudo nano /etc/init/gunicorn.conf

description "Gunicorn application server handling flowershop"

start on runlevel [2345]
stop on runlevel [!2345]

respawn
setuid ubuntu
setgid www-data
chdir /home/ubuntu/flowershop

exec env/bin/gunicorn --workers 3 --bind unix:/home/ubuntu/flowershop/flowershop.sock flowershop.wsgi:application

然后我跑了......

sudo service gunicorn start

它开始了!

我不得不更改它创建的套接字的名称,所以我删除了/etc/init/gunicorn.confupstart文件,创建了一个新的upstart文件,其名称与上一个相同,并尝试运行sudo service gunicorn start.

它现在返回以下与以下命令对应的错误消息...

sudo service gunicorn start

start: Job failed to start

&&

sudo service gunicorn stop

stop: Unknown instance: 

这显然与我的干涉有关,但我没有丝毫的线索如何解决它.

推荐阅读
虎仔球妈_459
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有