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
3 answers

Nokogiri installation failes on Elastic Beanstalk

Im trying to deploy my Rails application with AWS Elastic Beanstalk. I've created the instance and all but when I try to deploy the app using aws.push I get the following errors in the event log: 2014-09-22 01:23:40 UTC+0550 ERROR [Instance:…
4
votes
1 answer

Elastic Beanstalk: how to roll back the RDS schema to a known good state?

I'm somewhat confused about how to implement a system based on Elastic Beanstalk that will allow me to roll back both my server code and RDS schema to a known good state in the event of a bad deploy. I have an application that handles forward/up…
4
votes
4 answers

How do you switch between applications using EB CLI?

I managed to get a rails app running throw Elastic Beanstalk using the EB CLI and instructions outlined here: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/command-reference-get-started.html I then set up a second application going through…
4
votes
1 answer

How to run forever on Node.js with AWS Elastic Beanstalk

I tried to install forever in the package and in the start up command in Elastic Beanstalk, used the command "./node_modules/forever/bin/forever start app.js. But it seems it doesn't start the forever like the behaviour intended and the worker…
Hong Zhou
  • 659
  • 1
  • 9
  • 20
4
votes
0 answers

UnresolvedAddressException while connecting Beanstalk with Elasticache

I'm trying to deploy a Java Servlet application that uses Elasticache. (Tomcat7, Java7 on Beanstalk) But it gives an error on this statement: client=new MemcachedClient(new InetSocketAddress(configEndpoint, clusterPort)); The…
neeagl
  • 348
  • 1
  • 13
4
votes
1 answer

AWS cli elasticbeanstalk

How does one create an rds db along with the aws cli for elastic beanstalk? aws elasticbeanstalk create-environment I was able to make the command create a new elastic beanstalk environment but it did not create the rds db for me. Is there…
4
votes
2 answers

Spring security fail in load balanced (AWS Beanstalk) environment?

I am working on an existing code that's working just fine in an existing environment. The application has a login form that takes user to a landing page after they login. My problem: When I moved the application to AWS Beanstalk (with 2 instances),…
4
votes
2 answers

Mount specific EBS volume to Docker under AWS beanstalk

AWS Beanstalk can run applications from Docker containers. As mentioned in the docs (http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/create_deploy_docker_image.html) it's possible to write directory mappings to the EC2 volume in the…
4
votes
2 answers

Django Rest Framework and Angular App on same AWS Instance

I'm using Django Rest Framework for API service and Angular to use those APIs. How do I run Angular alongside Django Rest Framework on the EC2 instance using Amazon Elastic Beanstalk? For example, Django Rest Framework serves up the API through…
4
votes
1 answer

Running non-www stuff on an Elastic Beanstalk Docker container

I want to run a SMTP server on a Docker container in Elastic Beanstalk, so in my Dockerfile I have exposed the port 25 (and no other ports) EXPOSE 25 I also edited the beanstalk load balancer (using EC2 web admin) and added port 25 to it: | LB…
Andris
  • 27,649
  • 4
  • 34
  • 38
4
votes
2 answers

How to deploy to AWS Elastic Beanstalk on successful Teamcity build

I want to deploy a java application(Liferay) to Beanstalk from Teamcity when a build succeeds. I can't find anything online, please suggest. Thankyou
Chirdeep Tomar
  • 4,281
  • 8
  • 37
  • 66
4
votes
1 answer

What is the difference between "eb push" and "git aws.push"

When using the Amazon Web Services (AWS) Elastic Beanstalk command line interface, what is the difference between eb push and git aws.push
dangerousdave
  • 6,331
  • 8
  • 45
  • 62
4
votes
3 answers

t2.micro instance not showing in Elastic Beanstalk

I am trying to change from t1.micro to t2.micro in Elastic Beanstalk. I followed the exact same steps, including checking the VPC option in the following steps. My problem is that in the next step I only see the t1.micro instance option, not the…
Liron Harel
  • 10,819
  • 26
  • 118
  • 217
4
votes
1 answer

git: 'aws.push' is not a git command when trying to push a repository to Amazon Elastic Beanstalk on Mac

I have the following setup: Mac OS X 10.10 Python 2.7 I did the following steps AWS EB Console Tools added to my path export PATH=$PATH:~/amazon-eb/eb/linux/python2.7/ export AWS_ACCESS_KEY_ID=xxx export AWS_SECRET_KEY=xxx export…
Toli
  • 5,547
  • 8
  • 36
  • 56
4
votes
1 answer

Deploying Rails on AWS elastic beanstalk - Static Asset routing not working

I put up my rails application on AWS elastic beanstalk through Amazon's eb tool. On elastic beanstalk, I'm using its default load balancer, and am running ubuntu 64bit with ruby 2.0. I'm getting two major problems: 1) the root route isn't working.…