ebcli

Can't set SSH in AWS EB CLI [closed]

╄→尐↘猪︶ㄣ 提交于 2020-01-03 15:19:43
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 3 years ago . When I try to set up SSH keys on Elastic Beanstalk CLI, I got this error instead: ERROR: SSH is not installed. You must install SSH before continuing. I don't usually get this error before. Maybe before, the SSH got installed automatically when I install other things, but I somehow missed it now. 回答1: I finally

Trouble installing lxml to Elastic Beanstalk

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-25 08:17:27
问题 Having quite a difficult time installing Python requirements.txt to a PHP application on Elastic Beanstalk. Initially I had questioned the ability to Deploy multiple platforms to Elastic Beanstalk (PHP/Python). While this is not possible out of the box, it is possible to run pre-install commands via .ebextentions This lead to creating an .ebextentions/install_python_requirements.config container_commands: python_req: command: 'pip install -r /var/app/ondeck/requirements.txt' Trouble is, now

How to install EB CLI on ubuntu 18.04

故事扮演 提交于 2019-12-12 01:21:59
问题 I have tried lots of efforts but not found the result. Error Showing File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 3088, in <module> @_call_aside File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 3072, in _call_aside f(*args, **kwargs) File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 3101, in _initialize_master_working_set working_set = WorkingSet._build_master() File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py",

AWS EB CLI + Codecommit: git status incorrectly shows branch out-of-sync after deploy

喜夏-厌秋 提交于 2019-12-11 08:25:07
问题 After using "eb deploy" integrated to source control the CodeCommit remote repo is updated (I can see in AWS Console that the commit is there, in the cloud repo) and the EC2 instance is correctly running the new deployed version (can see it also through AWS Console). The problem: all things are synced but GIT says the remote repo is one commit behind it is actually is. When I type "git status" it says: Your branch is ahead of 'codecommit-origin/master' by 1 commit. (use "git push" to publish

Create a single instance Elastic Beanstalk application with eb-cli

断了今生、忘了曾经 提交于 2019-12-08 07:02:34
问题 So i have a java application with the appropriate Procfile/Buildfile. I have ran eb create in our scratch Elastic Beanstalk environment but i have to follow up with a manual configuration change to make it a single instance type vs a load balanced. How would i use the eb-cli where upon eb create $ENVIRONMENT_NAME it generates a single instance environment? There is a .elasticbeanstalk/config.yml branch-defaults: development: environment: development group_suffix: null staging: environment:

Elastic Beanstalk “git aws.push” only commited difference?

核能气质少年 提交于 2019-11-29 11:22:43
We are storing our PHP project on github. For fast deployment we are using .bat file for git pushing changes to AWS Elastic Beanstalk cloud: "C:\Program Files (x86)\Git\bin\sh.exe" --login -i -c "git aws.push --environment envname" We are making commit every time before push, and it's working just perfect, as expected. Unfortunately, for some reason, sometime it is pushing really quick (just pushing difference in PHP Code changes), but sometimes it is sending whole 300mb project (with all media). Is there any way to git push only changed diference? Maybe there is any additional parameters on

Elastic Beanstalk “git aws.push” only commited difference?

左心房为你撑大大i 提交于 2019-11-28 04:56:50
问题 We are storing our PHP project on github. For fast deployment we are using .bat file for git pushing changes to AWS Elastic Beanstalk cloud: "C:\Program Files (x86)\Git\bin\sh.exe" --login -i -c "git aws.push --environment envname" We are making commit every time before push, and it's working just perfect, as expected. Unfortunately, for some reason, sometime it is pushing really quick (just pushing difference in PHP Code changes), but sometimes it is sending whole 300mb project (with all