Questions tagged [amazon-elb]

Amazon Elastic Load Balancing (ELB) automatically distributes incoming application traffic across multiple Amazon EC2 instances.

Amazon Elastic Load Balancing automatically distributes incoming application traffic across multiple Amazon EC2 instances. It enables you to achieve even greater fault tolerance in your applications, seamlessly providing the amount of load balancing capacity needed in response to incoming application traffic. Elastic Load Balancing detects unhealthy instances within a pool and automatically reroutes traffic to healthy instances until the unhealthy instances have been restored. Customers can enable Elastic Load Balancing within a single Availability Zone or across multiple zones for even more consistent application performance. Elastic Load Balancing can also be used in an Amazon Virtual Private Cloud (“VPC”) to distribute traffic between application tiers.

See more at the product page.

2698 questions
1
vote
1 answer

AWS ELB Server-Side HTTPS

I have been working my way though setting up HTTPS using AWS. I have been attempting this with a self-signed certificate and am finding the process a bit problematic. One question that has come up along the way is this business of server-side…
Peter
  • 5,251
  • 16
  • 63
  • 98
1
vote
4 answers

How can I make an ELB forward requests from a single client to multiple nodes?

I'm currently running a REST API app on two EC2 nodes under a single load balancer. Rather than the standard load-balancing scenario of small amounts of traffic coming from many IPs, I get huge amounts of traffic from only a few IPs. Therefore,…
Tom Frost
  • 1,015
  • 11
  • 21
0
votes
3 answers

Why is my auto scaling EC2 instance reported as 'out of service' by the load balancer?

I'm having an issue with an Amazon EC2 instance during auto scaling. Every command I typed worked. I found no errors. But when testing whether auto scaling is working or not I found that it works until the instance started. The newly spawned…
0
votes
0 answers

how to configure loadbalancer to accsess kibana installed on bare metal kubernetes with helm chart (used metallb as load balancer)?

here is my helm chart for kibana with ssl and tls enabled.I have access to port 5601 with assined cluter ip (i have telnet throw port 5601)but not access throw loadbalancer(with assigned ip) but other apps working properly with assigned ip…
Ali farahzadi
  • 274
  • 2
  • 10
0
votes
0 answers

Invalid Host Header when trying to access the react.js application deployed on EC2 using AWS application Load balancer

i made a react js app and deployed it on ec2 . it is accessible by ec2 public ip and port number but when i try to attatch a load balancer to the instance i cannot access it by the static lb dns as it shows invalid host header . where should i make…
0
votes
0 answers

DNS configuration with separate accounts

I have an AWS setup where I have a main AWS account (MainAccount), where I have a public hosted zone for my domain (mydomain.com) and also registered the domain under this account. Then I have a separate AWS account (AppAccount) where I deploy my…
bszabo
  • 13
  • 2
0
votes
0 answers

AWS Kubernetes with ALB Stickiness / Sticky Session with unhealthy pod gives Bad Gatway response back

I am working with AWS ALB and Kubernetes for the first time and have some questions. Example, i have a "pod" and running in AWS Kubernetes. Replica is set to "2", so I have two pods running (pod-0 and pod-1). In the Ingress yml I have set the…
0
votes
0 answers

How to retrieve both default and additional certificates for SNI from a listener using boto3?

for listener in listeners: listener_arn = listener['ListenerArn'] protocol = listener['Protocol'] port = listener['Port'] certificates = listener.get('Certificates',…
0
votes
1 answer

Health Check Failed [403] But API or App works fine.. How to Change to Unhealthy to Healthy

API is working fine, but im still getting 403 or 301 errors during your Health Check, and I want to make it show as "Healthy" in Target Group - Load Balancer (LB). Unhealthy to Healthy in Health Check in TG ( Target Group ) I Need to Change it in…
0
votes
0 answers

Noticeable increase in Surgequeuelength and SpilloverCount metrics for Classic Load Balancer

I am using istio and I have karpenter setup. for node autoscalilng. I have couple of services running and Im using isito gateway. istio creates a classic load balancer in aws when setting up gateway-controller. but now I am facing this issue. in the…
0
votes
1 answer

Does Terraform support nested try blocks?

Would it be possible to attempt to find two resources and error if none of them are found? Example: data "aws_resourcegroupstaggingapi_resources" "elb_classic" { resource_type_filters = ["elasticloadbalancing:loadbalancer"] depends_on = [ ] …
0
votes
0 answers

Spring Boot Websocket on EKS Cluster

I have websocket service embedded in Spring Boot Application. The application is deployed on EKS Cluster and running on two pods and requests are routed to it via elb. Same application has some rest endpoints exposed and whenever those endpoints are…
0
votes
1 answer

Laravel Workers - AWS Beanstalkd Instance Termination

I am currently running my Laravel application on AWS Beanstalk with a load balancer configured. The setup allows for a minimum of 1 and a maximum of 2 instances to be running. So far, everything functions as expected, with the load balancer adding a…
0
votes
0 answers

Setup weighted redirect in AWS

I have a server making request to Server A. Now I need to direct 25% of all requests coming to Server A -> Server B. So 75% coming to A other 25 to B server I created a CName with weighted record policy within AWS Hosted zone uner this…
Yara
  • 1
  • 1
0
votes
0 answers

ODK Central redirected too many times at AWS load balancer

Im trying to self host the ODK Central using AWS EC2 instance and route it with load balancer so i can attach ACM SSL to its https connection. I can open ODK Central dashboard if I open the public IP address of my instance directly, but opening it…