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

Elastic Beanstalk: Create EC2 and RDS instances in the same Availibity Zone

I'm new to Elastic Beanstalk and I have a "simple" problem with where the EC2 and RDS instances are created. For a couple of hours now of creating, deleting enviroments and googling for solutions I'm out of ideas. The problem seems quite simple. I…
ssindelar
  • 2,833
  • 1
  • 17
  • 36
4
votes
1 answer

Get version label of python app deployed to elastic beanstalk

I would like to know how I can get version label attribute of bundle deployed on elastic beanstalk to show it in my application. As far as I know, bundles deployed with "git aws.push" are uploaded to an S3 bucket. My goal is to retrieve the version…
4
votes
1 answer

Using Elastic Beanstalk .ebextensions to specify an RDS database

With Elastic Beanstalk, can you specify whether you want to create an RDS database using .ebextensions?
pingu
  • 8,719
  • 12
  • 50
  • 84
4
votes
1 answer

AWS Elastic Beanstalk Rails app autoscaling issues

I'm running into two distinct, but related, issues with a Rails app (Ruby 1.9.3) I have deployed on AWS' Elastic Beanstalk. I have the following autoscaling config applied. I believe it is the default. Environment type: Load balanced, auto…
4
votes
3 answers

AWS Elastic Beanstalk run Grunt task

I want to run a node.js application on elastic beanstalk. I have a client which gets build by a grunt job (jade, less, concat, etc.) I excluded this folder from git I can localy run this by grunt buildClient which is executed by grunt-cli I added…
pfried
  • 5,000
  • 2
  • 38
  • 71
4
votes
1 answer

AWS Elastic Beanstalk SPF Record & Amazon SES

Basically what we've got is an application running on the AWS Elastic Beanstalk platform. Given this, the application itself is on multiple servers and to ensure mail delivery from the system, we need to add a sufficient SPF record for the Amazon…
4
votes
1 answer

Creating RDS database failed Reason: Cannot upgrade mysql

I'm following the instruction here to deploy my ruby on rails app on elastic beanstalks http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/create_deploy_Ruby_rails.html But I got following error when creating RDS database: 2014-04-19 18:35:49…
4
votes
1 answer

AWS Elastic Beanstalk - Using Mongodb instead of RDS using Python and Django environment

I've been following the official Amazon documentation on deplaying to the Elastic Bean Stalk. http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/create_deploy_Python.html and the customization…
4
votes
3 answers

MultiJson AdapterError Rails 4 Ruby 2 Passenger

I am trying to setup rails on aws (Dev env work fine). Can not get production to start up correctly. Can shell in and db looks good. I looked into my log file and I am getting the following error. rake aborted! MultiJson::AdapterError: Did not…
4
votes
1 answer

Add Subnets to ELBs and Subnets Value in Cloudformation Beanstalk script

I am not a JSON expert but I was able to manipulate the AWS Beanstalk VPC cloudformation template to pull a .WAR file from S3 and deploy as a new application. I also manipulated the script to create 2 additional subnets 1 for public and the other…
4
votes
1 answer

Auto scaling batch jobs on Elastic Beanstalk

I am trying to set up a scalable background image processing using beanstalk. My setup is the following: Application server (running on Elastic Beanstalk) receives a file, puts it on S3 and sends a request to process it over SQS. Worker server…
4
votes
1 answer

AWS BeanStalk deployment failed in .net?

Hi there i tried upload and deployed a sample web service in AWS beanstalk environment as guided in tutorial, But when i try to deploy my own web service following error occurred : Deployment of the website failed due to errors during build of the…
Gopi.cs
  • 985
  • 1
  • 16
  • 41
4
votes
1 answer

Celery timeout exception on Amazon Elastic Beanstalk using RabbitMQ

I'm trying to use Celery on my Beanstalk environment (this is the final piece in order to complete the technology stack of my project :P). This is what I've done so far: Since, RabbitMQ is the best broker for Celery and Amazon does not provide a…
daveoncode
  • 18,900
  • 15
  • 104
  • 159
4
votes
3 answers

With Elastic Beanstalk, can I determine programmatically if I'm on the leader node?

I have some housekeeping tasks within an Elastic Beanstalk Java application running on Tomcat, and I need to run them every so often. I want these tasks run only on the leader node (or, more correctly, on a single node, but the leader seems like an…
4
votes
1 answer

ElasticBeanstalk and Rails - Deploying app but only getting 404 Not Found nginx/1.4.3

I've been trying to deploy a simple app I developed to AWS with EB. The app runs without any problems on my local machine, but when I init and deploy to EB, nothing happens. I keep getting a 404 Not Found page with the text "nginx/1.4.3". As for…