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
3
votes
1 answer

how to do exact match in elastic search?

I want to find exact match .if there is no match .I don't want to null. I am search this id 6a8c283f-1e75-ec11-8943-000d3a15f525. it is giving me this output fcf0dd4e-abbc-ec11-983f-0022482588e9 But these it is not matched only ec11 matched I…
user18639304
3
votes
0 answers

AWS target group randomly deregistering target

I have an instance registered to a target group but it randomly will deregister and I have to go in and register the instance to the target group. This causes a 503 to be returned. Any idea why it keeps getting deregistered? The instances are behind…
3
votes
3 answers

Git, Beanstalk, WordPress Ultimate Deployment Approach

I'm using Git and Beanstalk to develop WordPress locally and then deploy to the production server with Beanstalk's deployment process. But how do I sync changes that are made on the production server back to my local development / git repo? Changes…
3
votes
1 answer

How to remove server header from nginx response in elastic beanstalk

I am trying to remove the server header (server: nginx/1.20.0) from elastic beanstalk response. I have added 00_server.conf to .platform/nginx/conf.d/ in the source bundle with the following configuration server { server_tokens off; } I am…
3
votes
1 answer

How to force npm install on elastic beanstalk node 16?

I have issues on elastic beanstalk because of some peer dependencies. In EB logs, I can see npm install --production is failing. How can I customize EB platform to either let me run install by myself (i was able to do this with Procfile on node 14…
boy
  • 405
  • 4
  • 12
3
votes
2 answers

NUXT SSR aws pipeline Build Issue

I have a very simple aws code pipeline to build Nuxt for SSR on eleastic beanstalk. version: 0.2 phases: install: runtime-versions: nodejs: 14 pre_build: commands: - yarn build: commands: - yarn build…
Patrick_Finucane
  • 725
  • 1
  • 7
  • 24
3
votes
1 answer

gRPC in AWS Elastic Beanstalk load balancer / network setup

I have been at this for a couple of days and just cant figure it out. I have tried this with gRPC in node.js and java on Elastic Beanstalk. On a normal VPS its quite simple just create a proxy grpcpass and it's set. I would like to move my micro…
3
votes
1 answer

Elastic Beanstalk setup with public ALB and EC2 on private subnet falling health check

I am trying to setup a sample Elastic beanstalk app with ALB being in public subnets(internet facing) and ec2 instances in private subnets in terraform. If I put ec2 instances in public subnets then the elastic beanstalk app get created successfully…
user2650277
  • 6,289
  • 17
  • 63
  • 132
3
votes
0 answers

Elastic Beanstalk deploy always fails but works if starting new environment

Similar question found here with no answers: Similar Question I am having a tough time replicating this issue. But it has happened many times. Basically, when I create the Elastic Beanstalk environment via Command Line like this: eb create set up…
mcool
  • 457
  • 4
  • 29
3
votes
1 answer

Uploading large files to AWS Elastic Beanstalk / nginx

I have an application that uploads a file which works fine on Heroku and on local developer machines - but on AWS EB, the upload is interrupted and doesn't complete. I've set the nginx directives as follows .ebextensions/00_project.config files: …
3
votes
2 answers

Access Denied for ElasticBeanstalk DescribeConfigurationSettings API method

I tried to run the DescribeConfigurationSettings API method for the ElasticBeanstalk as follow: AWSElasticBeanstalk ebs = AWSElasticBeanstalkClientBuilder.standard().withRegion(Regions.EU_CENTRAL_1).withCredentials(new…
Ihsan Haikal
  • 1,085
  • 4
  • 16
  • 42
3
votes
0 answers

nginx configuration for http2 on elastic beanstalk

I'm trying to setup an HTTP2 node server on elastic beanstalk using nginx. I have been reading some articles and I came across this one: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/nodejs-platform-proxy.html . Where it explains how to…
Antonio Gamiz Delgado
  • 1,871
  • 1
  • 12
  • 33
3
votes
1 answer

Upgrading Elastic Beanstalk environment from AWS Linux 1 to AWS Linux 2

I have an Elastic Beanstalk environment running Python 3.6 on AWS Linux 1, and I want to switch it to Python 3.8 on Amazon Linux 2. I know that I can upgrade environments using the aws CLI update-environment command: aws elasticbeanstalk…
Zags
  • 37,389
  • 14
  • 105
  • 140
3
votes
3 answers

.Net 5 AWS nginx Linux elastic beanstalk changing client_max_body_size

I am unable to upload a file above 1 megabyte due to the default setting on AWS elastic beanstalk nginx. I have looked online and I have found out that I need to change the client_max_body_size to client_max_body_size 20M to allow for larger files.…
3
votes
2 answers

Nodejs API on elastic beanstalk - will it use multiple vCpus?

Hi I have a silly question, but couldn't find any answers. NodeJS runs on a single thread - if I deploy my express API to elastic beanstalk, does it make any sense to use instance types with multiple vcpus? Does the nodejs environment for elastic…
boy
  • 405
  • 4
  • 12
1 2 3
99
100