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

Is there an API equivilent of the "Upload and Deploy" button in elastic beanstalk?

Is there an API equivilent of the "Upload and Deploy" button in elastic beanstalk?
4
votes
1 answer

Deploying a Rails / Ember app on AWS Elastic Beanstalk

I am having issues deploying my elastic beanstalk rails 4 + ember cli app. I have a rails application and within the root I have a folder called 'frontend' which contains my ember app generated by ember CLI Rails. My configuration: 64bit Amazon…
4
votes
2 answers

Flask SQLAlchemy Database with AWS Elastic Beanstalk - waste of time?

I have successfully deployed a Flask application to AWS Elastic Beanstalk. The application uses an SQLAlchemy database, and I am using Flask-Security to handle login/registration, etc. I am using Flask-Migrate to handle database migrations. The…
4
votes
2 answers

Graphicsmagick not working in Elastic Beanstalk with nodejs and S3

I'm using nodejs and graphicsmagick to process images with text, then streaming the final jpg to S3. Using postman, I was able to test this flow on my localhost and everything works fine. However, I'm having issues now that I moved it to Elastic…
4
votes
2 answers

Environment Variables / oracledb on Elastic Beanstalk

We are trying to install the node module oracledb on an Amazon Elastic Beanstalk instance. We can get oracledb working fine locally, and we have gotten to the point where the Beanstalk instance installs instantclient via the rpms. What we are stuck…
4
votes
0 answers

Permission denied for .pid file in Elastic Beanstalk

I am trying to start celery beat in elastic beanstalk like this: celery beat -A project --loglevel=INFO --pidfile=/var/log/celerybeat.pid No matter what folder I enter I keep getting permission denied error. Some threads suggest that I use root…
user4591041
4
votes
3 answers

502 bad gateway nginx + puma + rails 3.2 on Elastic Beanstalk

The deployment was successful and everything is green. But when we try to access the application URL, it gives 502 Bad Gateway error. Checking for puma process with ps -aux | grep puma doesn't return any process attached to puma server but pgrep…
Amit Patel
  • 15,609
  • 18
  • 68
  • 106
4
votes
1 answer

Download S3 and Add to App Directory

I have an elastic beanstalk Node app that I'm trying to setup. I'm trying to load an environment file from S3 into /var/app/ondeck/src/ so the file is available when the Node app is started. I've tried as many things as I can think of but the…
4
votes
1 answer

AWS Elastic Beanstalk GUI: Query failed to deserialize response

after running AWS Elastic Beanstalk application for few weeks suddenly I can't open my application. Page simply displays an error which doesn't provide much information how to fix it. Error A problem occurred while loading your page: AWS Query…
Lukas
  • 391
  • 4
  • 11
4
votes
2 answers

git aws.push: 'aws.push' is not a git command

From my site/application directory: $ git aws.push git: 'aws.push' is not a git command. See 'git --help'. git --help doesn't help. All the posts I have read were written before EB Command Line Interface (CLI) 3.x was a thing. I followed the…
4
votes
1 answer

AWS Elastic Beanstalk and Neo4j

I am new to web application development.I developed a web application(rest web service) that has both mysql and neo4j database. now I want to host it on the internet for a mobile app to consume.I was wandering if anyone could point me to steps i…
4
votes
2 answers

No path when executing commands in elastic beanstalk's container_commands

I am trying to deploy an application on AWS Elastic Beanstalk. I have the following file in .ebextensions: commands: 01-install-git: command: "yum install -y git &>> /tmp/deploy.log" 02-install-nodejs-npm: command: "yum install -y…
Manuel Darveau
  • 4,585
  • 5
  • 26
  • 36
4
votes
1 answer

aws beanstalk config options for document root

I'm trying to predefine instance settings via config file but it just won't take it... if I create the environment it never reflects the settings. I think I might just miss something obvious but can't find a solution. I probably terminated and…
Toby
  • 2,720
  • 5
  • 29
  • 46
4
votes
3 answers

Elastic Beanstalk + Route53 Alias = instant blue-green swaps?

When using Elastic Beanstalk with CNAME swapping for zero downtime deployments, DNS caching (clients not respecting TTL) causes some clients to continue sending traffic to the old environment (for up to several days). When using Elastic Beanstalk…
4
votes
1 answer

How to handle migrations on two separate laravel projects that use the same database?

Our setup is this: We have and API that feeds an iOS and an Android app We have an Admin API that feeds an Admin web app I'm developing the Admin, my colleague is developing the app API. They both use the same database, and most of the same…
Mihai Scurtu
  • 1,448
  • 1
  • 11
  • 22