Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/django/19.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Django 芹菜和玉米角工人之间的区别?_Django_Nginx_Gunicorn_Worker - Fatal编程技术网

Django 芹菜和玉米角工人之间的区别?

Django 芹菜和玉米角工人之间的区别?,django,nginx,gunicorn,worker,Django,Nginx,Gunicorn,Worker,我正在部署一个带有gunicorn、nginx和supervisor的Django应用程序 我目前使用芹菜运行后台工作人员: $ python manage.py celery worker 这是我的gunicorn配置: #!/bin/bash NAME="hello_app" # Name of the application DJANGODIR=/webapps/hello_django/hello

我正在部署一个带有gunicorn、nginx和supervisor的Django应用程序

我目前使用芹菜运行后台工作人员:

$ python manage.py celery worker
这是我的gunicorn配置:

#!/bin/bash

NAME="hello_app"                                  # Name of the application
DJANGODIR=/webapps/hello_django/hello             # Django project directory
SOCKFILE=/webapps/hello_django/run/gunicorn.sock  # we will communicte using this unix socket
USER=hello                                        # the user to run as
GROUP=webapps                                     # the group to run as
NUM_WORKERS=3                                     # how many worker processes should Gunicorn spawn
DJANGO_SETTINGS_MODULE=hello.settings             # which settings file should Django use
DJANGO_WSGI_MODULE=hello.wsgi                     # WSGI module name

echo "Starting $NAME as `whoami`"

# Activate the virtual environment
cd $DJANGODIR
source ../bin/activate
export DJANGO_SETTINGS_MODULE=$DJANGO_SETTINGS_MODULE
export PYTHONPATH=$DJANGODIR:$PYTHONPATH

# Create the run directory if it doesn't exist
RUNDIR=$(dirname $SOCKFILE)
test -d $RUNDIR || mkdir -p $RUNDIR

# Start your Django Unicorn
# Programs meant to be run under supervisor should not daemonize themselves (do not use --daemon)
exec ../bin/gunicorn ${DJANGO_WSGI_MODULE}:application \
  --name $NAME \
  --workers $NUM_WORKERS \
  --user=$USER --group=$GROUP \
  --log-level=debug \
  --bind=unix:$SOCKFILE

有没有办法在gunicorn手下管理芹菜背景工人?它指的是同一件事吗?

芹菜和玉米角是不同的东西。芹菜是一个异步任务管理器,gunicorn是一个web服务器。您可以将这两个任务作为后台任务运行(将芹菜daemonize),只需将django项目提供给它们即可

运行它们的一种常见方法是使用,这将确保在您从服务器注销后它们仍在运行。芹菜有一些