3

У меня есть приложение для размещения в Elastic Beanstock. Приложение требует Python 2.7, но Elastic Beanstock поддерживает только Python 2.6.

Я хотел бы установить Python 2.7 при развертывании. Вот конфиг.

.ebextensions/ конфигурации:

packages:                                                                                                                                                                                                                                                      
  yum:                                                                                                                                                                                                                                                         
    python27.x86_64: '2.7.3'                                                                                                                                                                                                                                   

container_commands:                                                                                                                                                                                                                                            
  01create_virtual_environment:                                                                                                                                                                                                                                
    command: "virtualenv -p /usr/bin/python27 /opt/python/run/venv27"                                                                                                                                                                                          
  02activate:                                                                                                                                                                                                                                                  
    command: "source /opt/python/run/venv27/bin/activate"                                                                                                                                                                                                      
  02install_packages:                                                                                                                                                                                                                                          
    command: "pip install -r /opt/python/current/app/requirements.txt"

Когда я создаю приложение, я получаю:

ERROR: Responses from [xxxxxxxx] were received, but the commands failed.

Когда я ssh в, я не вижу пакет.

Идеи?

2 ответа2

1

С http://leetreveil.roon.io/getting-a-python-2-7-project-running-on-elastic-beanstalk:

Вот файл .ebextensions/python27.config, который я написал, чтобы все настроить. Я объясню, что делает каждая часть конфига встроенной.

# Yum install the packages we need for python2.7
# on the EC2 box. python27-devel, make and httpd-devel
# are required for getting modwsgi setup with python27.
packages: 
  yum:
    python27: []
    python27-devel: []
    make: []
    httpd-devel: []

commands:
  # The modwsgi version currently installed on the system
  # is built with support for python2.6 only. This
  # command compiles and installs modwsgi with python2.7 support.
  installmodwsgi27:
    command: '[ -f mod_wsgi-3.4.tar.gz ] && echo "mod_wsgi-3.4 is already installed" || { wget http://modwsgi.googlecode.com/files/mod_wsgi-3.4.tar.gz; tar xzvf mod_wsgi-3.4.tar.gz; cd mod_wsgi-3.4; ./configure --with-python=python27; make; make install; } | iconv -f utf-8 -t us-ascii//TRANSLIT'

  # When our app is being deployed a virtualenv is setup
  # automatically for us. This injects the --python=python2.7
  # argument into the virtualenv CLI. This tells virtualenv to
  # use python2.7 instead of the default python2.6.
  usepython27:
    command: grep "python2.7" 03deploy.py || sed -i 's/--distribute/--python=python2.7 &/' 03deploy.py
    cwd: /opt/elasticbeanstalk/hooks/appdeploy/pre

container_commands:
  # Now that our app is installed using python2.7 we
  # need to fix some paths that the wsgi configuration
  # has pointing to python2.6. Copy the default eb wsgi.conf,
  # check it into git and replace the paths pointing
  # to python2.6. Check this diff out for the changes required:
  # https://github.com/leetreveil/elasticbeanstalk-python27/commit/3b3c955cfe686b9df77e0dddaf299ce6e1a20f32
  01replacewsgiconf:
    command: scp /opt/python/ondeck/app/wsgi.conf /opt/python/ondeck/wsgi

У автора также есть репозиторий Git со всеми скриптами и файлами, необходимыми для его настройки.

0

подобная ситуация описана здесь с подробностями о том, как решить

http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/create_deploy_Python_django.html

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .