我一直在尝试在EB上部署我的django应用程序几天但是我在尝试运行命令时遇到错误。所以基本上,当我尝试部署应用程序时,它给了我“python:无法打开文件'manage.py':[Errno 2]没有这样的文件或目录。”
对于完整错误,这是我在终端上运行eb deploy
后得到的结果。
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.
来自日志的错误消息:
[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
这是配置文件我有:
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之前,但仍然给出了同样的错误。我不知道怎么解决这个问题。请保存这个可怜的灵魂。感谢。
编辑:项目目录树看起来或多或少是这样的:
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 里面,
SECRET_KEY = os.environ['APP_SECRET_KEY']
但我得到的是错误
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。
答案 0 :(得分:1)
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安装您的需求中的所有包。