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
19
votes
4 answers

What is the AWS perfect substitute for Azure SignalR Service?

Recently, I used Azure's "Azure SignalR Service" along with Azure App Service to build a real time chat app. It worked like magic. I loved it! However, I am constrained now to use AWS for my platform and would like an equal substitute service such…
19
votes
8 answers

How do I setup and use Laravel Scheduling on AWS Elastic Beanstalk?

Scenario As a fairly new user of Laravel and Elastic Beanstalk I soon found my self in the need to schedule operations, like most of us do. In the past I had always used simple crontab scheduling for this. So now I stood before a list of…
19
votes
2 answers

Is it possible to run docker image/DockerFile on AWS Lambda?

I want to deploy a docker image with my given Dockerfile that executes a program on the AWS Lambda cloud. I know it is possible for EC2 but I want to use AWS Lambda. Anyone have references or know if it is possible? I was looking at the AWS Elastic…
19
votes
6 answers

AWS Codebuild fails while downloading source. Message: Access Denied

I created a CodeBuild Project that uses a docker image for node8. The purpose of this CodeBuild project is to do unit testing. It takes an input artifact from CodeCommit. And in the buildspec.yml it runs a test command. This is my (simple) buildspec…
19
votes
8 answers

AWS ElasticBeanstalk CLI in OS X: EB Command Not Found

I am running into an error attempting to run the ElasticBeanstalk CLI tools on Mac OSX. I have been troubleshooting path issues and hope someone can shed some light. Here is my set up. I am running Mac OS X El Capital 10.11.6, and I have manually…
19
votes
3 answers

Environment specific ebextensions Beanstalk commands

I have a spring-boot application for which I need to specify graphite server and port (to send metrics). For that to work, I have to install and configure statsd. I do that using the ebextensions file. commands: 01_nodejs_install: command:…
19
votes
2 answers

Django application 504 error after saving model

I have a Django website running Django 1.8 with Python 3.4 and hosted on AWS via ElasticBeanstalk. Recently, I've been having some issues with the Django admin area and 504 errors. The problem is very difficult to reproduce, it seems to happen…
19
votes
3 answers

Elastic Beanstalk Environment stuck on grey health

My AWS Elastic Beanstalk Environment is stuck in Health: Grey. My application is working, I can access it fine. However, I am unable to change configuration or deploy new versions because I get a message saying that Environment named ______ is in…
juangesino
  • 444
  • 2
  • 7
  • 10
19
votes
3 answers

How to solve Update environment operation is complete, but with errors. For more information error in AWS Elasticbeanstalk

I am using AWS Elasticbeanstalk for my project.When I uploading new version app it is giving error Update environment operation is complete, but with errors. For more information, see troubleshooting documentation My IAM role has…
RamRajVasavi
  • 896
  • 4
  • 12
  • 28
19
votes
6 answers

Error with not existing instance profile while trying to get a django project running on AWS Beanstalk

I`m trying to deploy a django project to AWS Beanstalk following this tutorial. I executed eb create and after a while I get the error The instance profile aws-elasticbeanstalk-ec2-role associated with the environment does not exist. I`m new to…
19
votes
5 answers

EB Deploy to multiple environments

I have the same codebase (one git repository) that I want to upload to multiple elastic beanstalk environments. Is there a way to do this, and if so how should I set up my repository in such a way that I can push to multiple environments? The…
adnan
  • 1,385
  • 2
  • 17
  • 31
19
votes
5 answers

'gcc' failed during pandas build on AWS Elastic Beanstalk

Getting the following error when trying to install Pandas (0.16.0), which is in my requirements.txt file, on AWS Elastic Beanstalk EC2 instance: building 'pandas.msgpack' extension gcc -pthread -fno-strict-aliasing -O2 -g -pipe -Wall…
19
votes
2 answers

How to Install and configure Redis on ElasticBeanstalk

How do I install and configure Redis on AWS ElasticBeanstalk? Does anyone know how to write an .ebextension script to accomplish that?
Ecil
  • 1,009
  • 1
  • 13
  • 28
19
votes
2 answers

Can I add custom log files to the logs captured by elastic beanstalk's 'eb logs' command?

When I request the log files for an elastic beanstalk environment either through the web interface or "eb logs" I get the contents of the log files /var/log/eb-version-deployment.log, /opt/python/log/httpd.out, /var/log/cfn-hup.log, and several…
19
votes
4 answers

AWS Elastic Beanstalk - Increase Instance Disk Capacity

I'm trying to use ElasticBeanstalk for an app with some big initial space requirements. It exceeds the default 8GB capacity of the EBS disk on the EC2 instances. I tried to increase the disk capacity by using a bigger EC2 instance type. For…
dsw88
  • 4,400
  • 8
  • 37
  • 50