AWS Elastic Beanstalk is a PaaS (Platform as a Service) service that allows you to quickly deploy and manage applications in the AWS cloud. Elastic Beanstalk handles the deployment details of capacity provisioning, load balancing, auto-scaling, and application health monitoring.
Questions tagged [elastic-beanstalk]
496 questions
4
votes
2 answers
How do I tag an Elastic Beanstalk environment when creating it with the "eb start" command line utility?
In May AWS introduced the ability to tag elastic beanstalk environments. We can't figure out how to tag an elastic beanstalk environment when we create it using "eb start."
We use the "eb command line interface" to create our environments. Using…

Peter M
- 973
- 2
- 15
- 27
4
votes
1 answer
aws elasticbeanstalk with static public ip
For a new web application I am looking at AWS ElasticBeanstalk.
I like its auto-balancing and auto-rolling updates' system as well as all the other scaling-related features.
But.. I need a static IP in order to communicate with a webservice…

gaddoz
- 43
- 1
- 4
4
votes
1 answer
EC2 cannot connect to RDS on VPC. Subnet issues?
I was able to deploy our .NET app using the AWS toolkit for Visual Studio. I set up the RDS database manually (MySQL) and deployed the app using elastic beanstalk (set up on VPC). The issue was that when i tested the signup form on the app running…

BellaGurl
- 41
- 2
4
votes
2 answers
Can Amazon Elastic Beanstalk auto-scale Amazon RDS?
I'm planning to run a PHP/MySQL application using Amazon Elastic Beanstalk. In the settings I can define when it should launch new instances automatically (Auto-Scaling).
However, as I understand this, this only creates new EC2-Instances and does…

David
- 51
- 1
- 3
4
votes
1 answer
AWS Beanstalk Auto-scaling Scaling Triggers with UnhealthyHost count and Health Checking
I have my scaling triggers set to look for an un-healthy host count but it does not seem to be working.
Now to test this - I am SSHing into one of my instances and halting the HTTPD service. Then, when I navigate to the health overview, I will…

rugbert
- 83
- 2
- 10
3
votes
0 answers
Elastic Beanstalk environment stuck in invalid state with "resource(s) failed to update: [AWSEBAutoScalingGroup]"
I'm in a catch-22: I cannot change the configuration of my Elastic Beanstalk environment because it is not in a "READY" state and I cannot put it in a ready state without changing the configuration.
The short story is I naively changed the instance…

Jason
- 185
- 2
- 7
3
votes
1 answer
What is my resolver on an AWS Elastic Beanstalk nginx?
I have a nginx in docker on an AWS Elastic Beanstalk.
I need to provide the resolver of nginx.
What resolver do I need to use?
I read about:
resolver 169.254.169.253;
OR
resolver 172.16.0.23;
And some else. My /etc/resolv.conf is showing my CIDR…

mealesbia
- 145
- 1
- 3
3
votes
1 answer
AWS EB and RDS: Invalid storage size for engine name mysql and storage type gp2
I'm trying to deploy my (python/django) application to AWS Elastic Beanstalk, but I am getting the error. Deployments have been working fine for the last few months, so I'm confused what could be the cause. Here's the error:
ERROR: Updating RDS…

Deven
- 133
- 1
- 1
- 4
3
votes
1 answer
How to enable JMX on elastic beanstalk running amazon linux tomcat8
I have to enable the following configuration for tomcat running in elastic beanstalk environment
-Dcom.sun.management.jmxremote.port=9000 -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false
I have absolutely…

PHP Avenger
- 259
- 2
- 8
3
votes
1 answer
Using ebextensions with Docker in AWS Elasticbeanstalk
As per documentation:
http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/create_deploy_docker_image.html
If you want to use ebextensions with a Single Container Docker Elasticbeanstalk environment, you have to:
Use a zip archive as your…

Garreth McDaid
- 3,449
- 1
- 27
- 42
3
votes
0 answers
Terraform "wait_for_ready_timeout" not working on elastic-beanstalk environment resource
Default setting for "wait_for_ready_timeout", is 20 minutes. Within the "aws_elastic_beanstalk_application_version" resource I set this to 40m with the hopes of overriding the default. It will only run 20 minutes and timeout.
I went into the AWS…

retroCheck
- 31
- 2
3
votes
3 answers
Assign default security group to Elastic Beanstalk instance
I have created a Elastic Beanstalk environment and I have a rails app running which is great. However I am unable to assign is to the default security group.
I have added a screenshot to this post showing the current security group assign. Any…

user440762
- 31
- 1
- 2
3
votes
2 answers
Amazon AWS Elastic Beanstalk EBS Logs To Cloudwatch (Multi Docker Env)
I would like to view all my logs in cloudwatch.
I currently have a multi-docker Elastic beanstalk environment.
I have selected for the logs to push to cloudwatch by going to
Elastic Beanstalk > App > Env > Configuration > Software Configuration >…

Matt The Ninja
- 198
- 1
- 3
- 14
3
votes
1 answer
Elastic Beanstalk Log Rotation Causing Apache Restart
I have already worked through AWS Elastic Beanstalk - Apache is restarting constantly
Our elastic beanstalk instances are reporting the following message in the error_log
[Mon Jun 26 22:01:01.878892 2017] [mpm_prefork:notice] [pid 8595] AH00173:…

samazi
- 131
- 1
- 5
3
votes
1 answer
AWS Elastic BeanStalk .ebextensions Package Manager for Ubuntu
The AWS Elastic BeanStalk Documentation specifically wrote:
Elastic Beanstalk currently supports the following package managers: yum, rubygems, python, and rpm.
So, what should I do if I want to install some packages on an Ubuntu image?
Can I…

pepoluan
- 5,038
- 4
- 47
- 72