Questions tagged [amazon-elastic-beanstalk]

AWS Elastic Beanstalk is a PaaS (Platform as a Service) service from Amazon Web Services that allows users to create applications and push them to a definable set of AWS services.

AWS Elastic Beanstalk is a PaaS (Platform as a Service) service from Amazon Web Services that allows users to create applications and push them to a definable set of AWS services, including Amazon EC2, Amazon S3, Amazon Simple Notification Service (SNS), Amazon CloudWatch, auto scaling, and elastic load balancers.

AWS Elastic Beanstalk Documentation

9253 questions
23
votes
4 answers

AWS Automatically Generating New Instance After I Terminate It.

OK, odd thing is happening on AWS. I downloaded the AWS .NET developer tools and created an elastic beanstalk default instance. I then, for one reason or another, created another instance via the Visual Studio interface and that instance is where…
Peter
  • 5,251
  • 16
  • 63
  • 98
22
votes
2 answers

mysqlclient installation error in AWS Elastic Beanstalk

I am deploying a django with mysql app on AWS Elastic Beanstalk, so mysqlclient library is needed. mysqlclient needs python3-devel and mysql-devel package to be installed, so I have the custom config file for it 01_packages.config: packages: …
Yasser Mohsen
  • 1,411
  • 1
  • 12
  • 29
22
votes
1 answer

What are the default security groups created when I set up AWS EB for the first time?

I'm puzzled by the role played by several groups that seem to have been added automatically to my list of AWS security groups, connected in what I gather is the default configuration, and wonder how they work (and what about them it is safe to…
orome
  • 45,163
  • 57
  • 202
  • 418
22
votes
5 answers

Is it possible to have Centralised Logging for ElasticBeanstalk Docker apps?

We have custom Docker web app running in Elastic Beanstalk Docker container environment. Would like to have application logs be available for viewing outside. Without downloading through instances or AWS console. So far neither of solutions been…
Roman
  • 1,920
  • 2
  • 17
  • 17
22
votes
7 answers

How to use a private npm registry on Elastic Beanstalk?

We have a nodejs project running on Amazon Elastic Beanstalk that uses private modules that we host using nodejitsu's private npm registry. However getting access to the private npm registry from the elastic instances hasn't been straightforward and…
22
votes
1 answer

What is the equivalent of AWS elastic beanstalk in GCP?

Is Elastic Beanstalk of AWS an answer to GAE of GCP? Are there any benchmark comparisons between the two?
22
votes
1 answer

Can't access HTTPS site on Elastic Beanstalk after configuring HTTPS in the load balancer

I have a standard Elastic Beanstalk app set up and running great over HTTP. There is one EC2 instance (for now), and the domain is configured with a CNAME pointing to the load balancer. Following the instructions in the AWS documentation, I inputted…
22
votes
2 answers

how to attach SSL certificate to single instance beanstalk app

I have a Java war that I want to host on elastic beanstalk on AWS. I have a certificate but I am not able to figure out how to attach it to my single instance app. All the howtos describe how to attach the certificate to elastic load balancer but no…
Jus12
  • 17,824
  • 28
  • 99
  • 157
21
votes
2 answers

AWS Elastic Beanstalk Docker Does not support Multi-Stage Build

I am struggling to get my build deploying to AWS on Docker. I have no idea where the solution lays as this is my first time with Docker. I have got it all working fine locally, but when I deploy I get the following error in Elastic…
21
votes
4 answers

PostgreSQL on Elastic Beanstalk (Amazon Linux 2)

With former generation of Amazon Linux, all I needed to do is add the following in .ebextensions in order to use PostgreSQL: packages: yum: postgresql93-devel: [] Now when I deploy on EB with the following platform: Python 3.7 running…
21
votes
3 answers

How to run a celery worker with Django app scalable by AWS Elastic Beanstalk?

How to use Django with AWS Elastic Beanstalk that would also run tasks by celery on main node only?
21
votes
2 answers

How to force application version on AWS Elastic Beanstalk

I'm trying to deploy a new version of my Python/Django application using eb deploy. It unfortunately fails due to unexpected version of the application. The problem is that somehow eb deploy screwed up the version and I don't know how to override…
21
votes
6 answers

AWS Error: Error during Url validation; check URL and try again

I'm trying to deploy a test site to AWS via the toolkit for visual studio, and I'm getting a strange error at the environment selection page. Google searches are yielding no real information on it. The error appears when I try to validate the url…
Chris
  • 28,822
  • 27
  • 83
  • 158
21
votes
3 answers

How to set the instance type with Elastic Beanstalk?

How can I change the instance type of an existing Elastic Beanstalk application? Currently I am changing it in the web interface: I tried changing it with the command line tool: eb setenv InstanceType=t2.medium It didn't throw an error, but also…
ustroetz
  • 5,802
  • 16
  • 47
  • 74
21
votes
8 answers

AWS aws.push ImportError: No module named boto in Ubuntu

I'm trying to follow this tutorial: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/create_deploy_Ruby_rails.html in order to deploy a Ruby on Rails app in AWS with Ubuntu. Everything went ok (I can run my app in local), until the final…
Rober
  • 5,868
  • 17
  • 58
  • 110