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 cron and deployment permissions

During deployment to AWS Elastic Beanstalk I want to do two things: Take a file with cron entries and place this file in /etc/cron.d/ Change the file permissions on shell scripts contained in a single directory so they can be executed by the…
4
votes
1 answer

Elastic Beanstalk not creating RDS Parameters

I'm following this tutorial in an effort to create a Django application on AWS. http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/create_deploy_Python_django.html I was able to get everything working with a local sqlite database but I am trying…
4
votes
1 answer

Listening on SSL with node.js on AWS Beanstalk

I have a node.js app running fine on Beanstalk but now I'm trying to set it up to use an SSL certificate to allow https access. However, any configuration settings I try to use apart from the default listening on port 80 causes the whole app (on…
af.
  • 157
  • 3
  • 11
4
votes
1 answer

Can't get AWS Elastic Beanstalk Command Line Tool to work on Windows 8. Get the following PowerShell error?

Add-Type : Cannot add type due to the following exception: Compiler executable file csc.exe cannot be found.. Verify that version 3.5 of the Microsoft .NET Framework is installed. On 64-bit versions of Windows, the WOW64 component is also…
4
votes
2 answers

successfully deployed flask app but getting a 404 when accessing the page

I was able to deploy a sample flask app to AWS using the instructions from this document http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/create_deploy_Python_flask.html the status from "eb status" is Green Retrieving status of environment…
Michael
  • 3,699
  • 4
  • 26
  • 27
4
votes
2 answers

Access Denied to an S3 object in Elastic Beanstalk configuration setting

I am trying to configure the 'source' parameter in an elastic beanstalk application config file. The relevant source is a bz2 file which i have uploaded in a new S3 bucket. As an example, the name of the bucket created is 'abc' and the file name is…
mohitp
  • 1,305
  • 2
  • 16
  • 20
4
votes
1 answer

Can AWS Elastic Beanstalk be used to deploy to an already existing EC2 instance? .net

I have an Amazon EC2 instance which I have been using for quite some time for deployment of a .net application. The existing instance has a large database set up already on it which is used with the application. I am trying to find a way to use…
4
votes
1 answer

Deploying an existing Rails app to AWS Elastic Beanstalk

I'm new to Rails and I'm trying to deploy an existing Rails app to AWS Elastic Beanstalk. But all I'm getting is just the "Congralutions Page" (FYI: I'm able to run the app on "localhost:3000" using "rails server" ) I followed the instructions…
4
votes
3 answers

installing PHP module from Elastic Beanstalk

I am trying to configure my AWS Elastic Beanstalk to work with mongo, all I need to do is install the mongo driver for PHP and update the php.ini file To do this, usually I would ssh into the EC2 and run: sudo pecl install mongo But this would…
Lawrence Cooke
  • 1,567
  • 3
  • 26
  • 52
4
votes
2 answers

Elastic Beanstalk - PHP / Force HTTPS

How do I redirect all traffic while using Amazon Elastic Beanstalk with PHP from http to https? I have setup my Beanstalk to have a https port (all the certificate and stuff has been setup).
4
votes
3 answers

Amazon Elastic Beanstalk: Can multiple applications share a single Amazon RDS database instance?

When creating an application in Amazon Elastic Beanstalk, you have the option of creating a new Amazon RDS database instance. Is it possible to associate an existing RDS database instance with an Elastic Beanstalk application?
4
votes
1 answer

sshing in aws load balancer and configuring it for subdomain routing?

We want to use Amazon Elastic BeanStalk service for deployment in EC2 Boxes. We want to deploy our Ruby on Rails Application in such a way that we can do sub-domain based routing to different rails app. And we want to use single SSL Certificate for…
4
votes
1 answer

How to get Elastic Beanstalk to server compiled assets?

I am trying to get a Rails 3.2.x application to run in production but everytime I visit the deployed application it complains about assets not being compiled: An ActionView::Template::Error occurred in home#index: application.css isn't…
heavysixer
  • 2,069
  • 17
  • 25
4
votes
1 answer

PHP 5.4.9 $_POST superglobal not created if 'Content-Type: application/json' is in header

I noticed a strange bug in my application that happens when using the AWS Elastic Beanstalk PHP 5.4.9 AMI. When submitting a GET AJAX request that contains the header 'Content-Type: application/json' the $_POST superglobal is set to null. If I…
greg
  • 6,853
  • 15
  • 58
  • 71
4
votes
1 answer

How do I set up my AWS EC2 Elastic Beanstalk project to collaborate with others?

I have been working on AWS EC2 using Elastic Beanstalk for a few months now. Everything is going well. Now, the client wants to add another developer to the project. I am a little unclear as to how to do this. It seems that Elastic Beanstalk is…