Amazon Web Services Elastic Load Balancer (aws-elb) is a service offered by aws to automatically distribute incoming network traffic across multiple targets (EC2 instances or specific ports).
Questions tagged [aws-elb]
190 questions
1
vote
1 answer
SSL to AWS ELB and ELB to Tomcat non SSL / HTTP
I have configured an AWS ELB with 443 HTTPS port to support Https incoming request. However, from ELB I want to point to a target EC2 which has a tomcat server running on port 80 without any SSL configuration.
I don't want to configure SSL at Tomcat…

Dhaval Patel
- 608
- 7
- 15
1
vote
2 answers
Do I have to configure SSL certificates files in nginx.conf file behind AWS Application Load Balancer?
I have a configuration in AWS EC2 for HTTPS incoming connections.
As I am a newbie to this stuff, I have nginx config which in an old-fashioned way I would edit like this: https://nginx.org/en/docs/http/configuring_https_servers.html.
Though, in AWS…

Sergei Basharov
- 51,276
- 73
- 200
- 335
0
votes
0 answers
Aws elb rule path in cloudwatch metrics?
Hi all is there any way where i can get url path(listener rule) in aws elb cloudwatch metrics like we have matched_url_path_rule in gcp loadbalacing metrics.

Sandy
- 107
- 13
0
votes
0 answers
How can I override GET/ok ELB-HealthChecker/2.0 in dropwizard?
I have a use case where I want to override the default behavior of ELB healthchecker. It currently succeeds in all scenarios but I want to check if the DB has no available connections or an external client is not responding, the healthcheck should…

AppleBud
- 1,501
- 8
- 31
- 47
0
votes
0 answers
Getting logs for a transaction on both servers on a Load balancer
I have an application deployed on 2 Tomcat servers, and exposed with an AWS classic Load Balancer. When a transaction request is sent to the Load balancer, I find the logs for that one transaction on both servers. I don't know if it is an…

Amarichey
- 11
- 2
0
votes
0 answers
EKS AWS Load Balancer Controller ALB support
I have an EKS cluster created with terraform-aws-modules/eks/aws and then I used helm to install the latest aws-load-balancer-controller:
✗ helm ls -n default
NAME NAMESPACE REVISION UPDATED STATUS …

Greg
- 284
- 6
- 23
0
votes
0 answers
AWS ECS (rtmp) target group unhealthy
I have read the post about how to expose multiple ports in AWS ECS (fargate) load balancer. And I have opened port 80 (HTTP) and 1935 (RTMP) in load balancer and they are also exposed in docker and target definition.
When I describe the service, I…

Charles
- 675
- 3
- 12
- 21
0
votes
0 answers
Symfony 6: How to SAFELY replace deleted constant HttpFoundation\Request::HEADER_X_FORWARDED_FOR (AWS ELB)?
Having some project which is updated from Symfony 5 to Symfony 6 we have realized that a certain constant is missing.
Old code:
// We always trust the connecting client to be a proxy (load balancer) as we're never exposed to the internet directly
…

Blackbam
- 17,496
- 26
- 97
- 150
0
votes
0 answers
AWS Network load balancer tls packet lost problem
The NLB(Internet-facing) collects logs for deepsecurity, etc... from internet the VPC in filebits.
Below is the current configuration status.
Deepsecurity ips send the log to the nlb listener in tls protocol.
The NLB sends the logs send to the…

MrRyu
- 1
- 2
0
votes
0 answers
AWS ELB- HealthChecker sends unique request to app from different virtual hosts
Currently hosting a nodeJS API back-end using AWS Elastic Beanstalk, where all unique requests generates a session data (IP address, userAgent...), and the session data is stored as a mongoDB document. However, I recently noticed that…

wuta
- 21
- 2
0
votes
0 answers
How to create a DNS record for AWS internal load balancer
We have an internal load balancer serving nginx in AWS which is accessible from our VPN. The load balancer is using an amazon issued certificate from ACM. We are using an external DNS service and we configured the cname of "test.sample.dev" to point…

mnizus
- 19
- 2
0
votes
1 answer
Deploy an IPv6 Kubernetes LoadBalancer Service on Amazon EKS
Based on the AWS doc, with the following annotation, we can have an IPv6 LoadBalancer service!
service.beta.kubernetes.io/aws-load-balancer-ip-address-type: "dualstack"
However, after deploying the below file, it creates IPv4 ELB. Although, we can…
0
votes
0 answers
How to get instance IDs attached to a load balancer with aws cli commands (aws elbv2 / elb)
I am using aws cli command to get the instance IDs attached to a load balancer.
I have tried using aws cli command "aws elbv2" but this does not list EC2 instances like "aws elb" command
For classic load balancers you can use:
aws elb…

polo
- 155
- 4
- 11
0
votes
1 answer
Got Error "Either integrationSubtype` or `integrationUri` must be specified" when try to integration Fargate service with API gateway
I'm trying to create a public API which will be integrated with a Fargate service which already exists in private subnet.
I got below error when run cdk synthesize …

Yang Liu
- 541
- 9
- 26
0
votes
1 answer
AWS API Gateway VPC Link to ELB returning Service Unavailable with HTTP503 in ApiGateway logs but nothing in ELB Logs
I'm having issues with setting up an AWS API Gateway VPC Link to an existing ELB in order to make a private endpoint public.
The error I receive when browsing to the API Gateway endpoint is {"message":"Service Unavailable"}
Here's project…

Steve Mapes
- 861
- 8
- 21