首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >EB Django配置命令错误

EB Django配置命令错误
EN

Stack Overflow用户
提问于 2017-02-03 19:06:23
回答 1查看 2.6K关注 0票数 5

几天来,我一直试图在EB上部署django应用程序,但运行命令时一直遇到错误。因此,基本上,当我尝试部署应用程序时,它会给我"python:无法打开文件‘manage.py e.py’:Errno 2--没有这样的文件或目录。“对于完全错误,这是在我的终端上运行eb deploy之后得到的结果。

代码语言:javascript
复制
Starting environment deployment via CodeCommit
--- Waiting for Application Versions to be pre-processed ---
Finished processing application version app-e8a0-170203_135603 
INFO: Environment update is starting.                               
INFO: Deploying new version to instance(s).                          
WARN: Environment health has transitioned from Severe to Degraded. 100.0 % of the requests are erroring with HTTP 4xx. Insufficient request rate (6.0 requests/min) to determine application health. Command failed on all instances. Incorrect application version found on all instances. Expected version "app-e8a0-170203_135603" (deployment 43). Application update in progress (running for 2 seconds).
ERROR: [Instance: i-05377fd0bcfa86dd6] Command failed on instance. Return code: 2 Output: python: can't open file 'HungryBoat/manage.py': [Errno 2] No such file or directory. 
command 03_migrate in .ebextensions/03_commands.config failed. For more detail, check /var/log/eb-activity.log using console or EB CLI.
INFO: Command execution completed on all instances. Summary: [Successful: 0, Failed: 1].
ERROR: Unsuccessful command execution on instance id(s) 'i-05377fd0bcfa86dd6'. Aborting the operation.
ERROR: Failed to deploy application. 

来自日志的错误消息

代码语言:javascript
复制
[2017-02-03T21:05:46.082Z] INFO  [2980]  - [Application deployment app-019d3-170203_154910@1/StartupStage0/EbExtensionPreBuild/Infra-EmbeddedPreBuild/prebuild_1_HungryBoat] : Starting activity...
[2017-02-03T21:05:46.082Z] INFO  [2980]  - [Application deployment app-019d3-170203_154910@1/StartupStage0/EbExtensionPreBuild/Infra-EmbeddedPreBuild/prebuild_1_HungryBoat/Command 01_migrate] : Starting activity...
[2017-02-03T21:05:46.147Z] INFO  [2980]  - [Application deployment app-019d3-170203_154910@1/StartupStage0/EbExtensionPreBuild/Infra-EmbeddedPreBuild/prebuild_1_HungryBoat/Command 01_migrate] : Activity execution failed, because: python: can't open file '/opt/python/current/app/hungryboat/manage.py': [Errno 2] No such file or directory
   (ElasticBeanstalk::ExternalInvocationError)


[2017-02-03T21:05:46.147Z] INFO  [2980]  - [Application deployment app-019d3-170203_154910@1/StartupStage0/EbExtensionPreBuild/Infra-EmbeddedPreBuild/prebuild_1_HungryBoat/Command 01_migrate] : Activity failed.
[2017-02-03T21:05:46.147Z] INFO  [2980]  - [Application deployment app-019d3-170203_154910@1/StartupStage0/EbExtensionPreBuild/Infra-EmbeddedPreBuild/prebuild_1_HungryBoat] : Activity failed.
[2017-02-03T21:05:46.147Z] INFO  [2980]  - [Application deployment app-019d3-170203_154910@1/StartupStage0/EbExtensionPreBuild/Infra-EmbeddedPreBuild] : Activity failed.
[2017-02-03T21:05:46.413Z] INFO  [2980]  - [Application deployment app-019d3-170203_154910@1/StartupStage0/EbExtensionPreBuild] : Activity failed.
[2017-02-03T21:05:46.413Z] INFO  [2980]  - [Application deployment app-019d3-170203_154910@1/StartupStage0] : Activity failed.
[2017-02-03T21:05:46.414Z] INFO  [2980]  - [Application deployment app-019d3-170203_154910@1] : Completed activity. Result:
  Application deployment - Command CMD-Startup failed

下面是我拥有的配置文件

代码语言:javascript
复制
option_settings:
    "aws:elasticbeanstalk:application:environment":
        DJANGO_SETTINGS_MODULE: "hungryboat.settings"
        PYTHONPATH: "./hungryboat"
    "aws:elasticbeanstalk:container:python":
        WSGIPath: "hungryboat/wsgi.py"
        NumProcesses: 3
        NumThreads: 20
    "aws:elasticbeanstalk:container:python:staticfiles":
        "/static/": "www/static/"

commands:

    01_pip_update:
        command: "pip install --upgrade pip"
        leader_only: true
    02_pip_freeze:
        command: "pip freeze > requirements.txt"
    03_migrate:
        command: "source /opt/python/run/venv/bin/activate && python manage.py migrate --noinput"
        leader_only: true
    04_collect_static:
        command: "source /opt/python/run/venv/bin/activate && python manage.py collectstatic --noinput"

我曾尝试将项目名称放在manage.py前面,但仍然给出了相同的错误。我不知道我怎么能解决这个问题。请救救这个可怜的灵魂。谢谢。

编辑:项目目录树看起来或多或少如下所示:

代码语言:javascript
复制
hungryboat
├── hungryboat/.ebextensions
├── hungryboat/.elasticbeanstalk
├── hungryboat/accounts
├── hungryboat/dump.rdb
├── hungryboat/hungryboat
│   ├── hungryboat/hungryboat/asgi.py
│   ├── hungryboat/hungryboat/__init__.py
│   ├── hungryboat/hungryboat/migrations
│   ├── hungryboat/hungryboat/routing.py
│   ├── hungryboat/hungryboat/settings.py
│   ├── hungryboat/hungryboat/urls.py
│   └── hungryboat/hungryboat/wsgi.py
├── hungryboat/manage.py
├── hungryboat/menu
├── hungryboat/pickplace
├── hungryboat/README.md
├── hungryboat/requirements.txt
├── hungryboat/static
└── hungryboat/venv

**编辑:修复了上面的问题,但现在我遇到了不同的错误**

settings.py里面,

代码语言:javascript
复制
SECRET_KEY = os.environ['APP_SECRET_KEY']

但是我得到了这个错误

代码语言:javascript
复制
INFO: Deploying new version to instance(s).                         
ERROR: [Instance: i-0c46f0a9e5069d5bf] Command failed on instance. Return code: 1 Output: (TRUNCATED)...python/run/venv/local/lib/python3.4/site-packages/django/conf/__init__.py", line 116, in __init__
raise ImproperlyConfigured("The SECRET_KEY setting must not be empty.")
django.core.exceptions.ImproperlyConfigured: The SECRET_KEY setting must not be empty.

我在EB环境变量中有APP_SECRET_KEY。

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2017-02-03 20:37:16

代码语言:javascript
复制
option_settings:
  "aws:elasticbeanstalk:application:environment":
     DJANGO_SETTINGS_MODULE: "hungryboat.settings"
     PYTHONPATH: "/opt/python/current/app/hungryboat:$PYTHONPATH"
  "aws:elasticbeanstalk:container:python":
     WSGIPath: "hungryboat/wsgi.py"
     NumProcesses: 3
     NumThreads: 20
  "aws:elasticbeanstalk:container:python:staticfiles":
     "/static/": "www/static/"

container_commands:
  01_migrate:
    command: "django-admin.py migrate"
    leader_only: true
  02_collect_static:
    command: "python /opt/python/current/app/hungryboat/manage.py collectstatic --noinput"

您的pythonpath是错误的,这就是为什么它找不到manage.py文件。首先更改pythonpath,然后再试一次。还要确保您在本地项目上有一个requirements.txt。您不应该在实例中创建需求,您应该在本地创建,并且在部署时,它将使用pip安装需求中的所有包。

票数 3
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/42031349

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档