尝试通过主管运行Gunicorn脚本时出错。 在直接运行时,gunicorn脚本运行良好。 我在Ubuntu 16.04上 主管版本:
pkg_resources.DistributionNotFound: The 'supervisor==3.2.0' distribution was not found and is required by the application
跑步时
sudo supervisorctl reread
我的gunicron脚本运行Django应用程序:
#!/bin/bash
NAME="applicant_screening" # Name of the application
DJANGODIR=/home/applicant-screening-system/screening_backend # Django project directory
#SOCKFILE=/home/track_ip/run/gunicorn.sock # we will communicte using this unix socket
USER=root # 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=screening_backend.settings # which settings file should Django use
DJANGO_WSGI_MODULE=screening_backend.wsgi # WSGI module name
echo "Starting $NAME as `whoami`"
# Activate the virtual environment
cd $DJANGODIR
source /home/screen-env/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 gunicorn ${DJANGO_WSGI_MODULE}:application \
--name $NAME \
--workers $NUM_WORKERS \
--user=$USER \
--bind=0.0.0.0:8000 \
--log-level=debug \
--log-file=-
答案 0 :(得分:5)
这是管理员要求和安装的python版本之间的版本不匹配。为此,您需要:
安装Python 2.7。 (由于主管对2. *的支持,而对3. *的支持仍在开发中) https://askubuntu.com/a/981279
转到/ usr / bin / supervisorctl文件。
将第一行更新为
!/ usr / bin / python2
使主管使用安装的python 2.7代替python3。
答案 1 :(得分:0)
您将需要通过pip安装主管:
pip install supervisor==3.2.0
答案 2 :(得分:0)
可能安装了多个不同版本的supervisorctl。我在安装python3.5并将python3设置为默认python版本时遇到了相同的问题。我按照如下方法尝试解决了这个问题。
whereis supervisorctl
将获得所有主管版本的位置。答案 3 :(得分:0)
使用apt安装主管-
apt install supervisor -y
生成主管配置文件-
sudo su - && echo_supervisord_conf > /etc/supervisor/supervisord.conf
将gunicorn条目添加到配置文件的末尾-
[program: gunicorn]
command=/gunicorn_start.sh
其中gunicorn_start.sh是您的gunicorn脚本。
重新启动受监管的服务-
sudo service supervisor restart
使用--
sudo supervisorctl
答案 4 :(得分:0)
对于我来说,我安装了gunicorn3而不是gunicorn,问题就消失了。
sudo apt install gunicorn3