Questions tagged [amazon-elb]

ELB is Amazon's managed Load Balancer service, used in conjunction with its EC2 virtual machine cloud hosting service.

552 questions
0
votes
1 answer

How to upload a certificate to Amazon ELB?

I've generated the pem files for a new certificate which we recently purchased from comodo, using this link as a guide: "https://guillaumemaka.com/2015/05/06/install-your-comodo-certificates-to-amazon-aws.html". However, I'm unclear as to how to…
Jack BeNimble
  • 194
  • 11
0
votes
0 answers

How to configure ELB load-balancer over HTTPS for two sites deployed to the same pair of servers?

I would appreciate immensely if you shed some light into what we might be missing or doing wrong. I am not completely in charge of the configuration, and I'm not an expert on the subject, but have been working with our systems team trying to resolve…
0
votes
1 answer

AWS ELB health check fails on LDAP authentication

I am running a Docker container through ECS. The container runs an Apache server hosting a simple web application. However, the server requires LDAP authentication to access the page. I am using a Service configured with an ELB to manage the…
0
votes
0 answers

Elb healthcheck fails for Https

Im using a url for ELB healthcheck in AWS. This health check is working with Http:1140/ and the attached Ec2 Instance were showing as Inservice but when i use Https:11402/ the healthcheck fails and the…
shiv455
  • 223
  • 1
  • 3
  • 7
0
votes
1 answer

Installing Deis in AWS without ELB

I'd like to install a Deis cluster in AWS but without using ELB, since we have already paid for an alternative (BigIP), and our network guys are comfortable with it. Is it easy to configure Deis not to use ELB, and rely on BigIP instead?
Elifarley
  • 151
  • 1
  • 9
0
votes
1 answer

EC2 instances single public subnet - VPN Successful But no internet

I have successfully established a VPN connection to VPC EC2 Instances (Windows), which reside in single public subnet. But, both instances cannot ping Google or each other. Is it possible to assign a Elastic IP to the public subnet so that the…
0
votes
1 answer

AWS ELB + NGINX for rails app

If I'm using Amazon's Elastic Load Balancer for a Rails app, do I need to put an Nginx reverse proxy between the app and the ELB?
0
votes
3 answers

Passing multiple https domains through Elastic Load Balancer

I just moved a site from one domain to another. It's still on the same servers behind an AWS Elastic Load Balancer. I also changed the certificate on the load balancer to one for the new domain. The problem is that all existing links out there are…
99miles
  • 361
  • 3
  • 6
  • 16
0
votes
0 answers

Understanding AWS ELB, multiple ELB per subnet or one ELB per subnet?

So I'm trying to setup a production site and I'm new to the devops world. I have a setup that consists of four components: 1) Node.js API Server 2) Memcached Elasticache cluster 3) Postgresql RDS 4) Rabbitmq Cluster 3 nodes-> Handcrafted by me With…
0
votes
4 answers

SSL certificate for CNAME redirected domain

I have a webservice which provides simple site constructor functionality with payment page. User can select purchase domain e.g. user.com, select some template and point this domain with CNAME to my webservice e.g. site.constructor.com. And there…
0
votes
1 answer

ELB level Sticky sessions AWS

Would like to know the real benefit/advantage of configuring sticky sessions @ load balancer level in AWS.. i understood from the AWS documentation that the user request will be routed to a specific instance based on the cookie added to the request…
shiv455
  • 223
  • 1
  • 3
  • 7
0
votes
1 answer

Using CloudFormation, I cannot get an AAAA record to work with ELB

I have the following two CloudFormation resources: "TestELB" { ... }, "TestRecordSetGroup": { "Type": "AWS::Route53::RecordSetGroup", "Properties": { "HostedZoneName": "example.com.", "RecordSets": [ { "Name":…
smitelli
  • 1,214
  • 1
  • 10
  • 16
0
votes
1 answer

Amazon Web Services, mod_remoteip behind VPC hosted ELB occasionally sending IPv6 addresses

On Amazon Web Services, I have an EC2 instance running Apache and mod_remoteip. The instance is behind a Virtual Private Cloud (VPC) hosted Elastic Load Balancer (ELB). In the mod_remoteip config file, I have: RemoteIPTrustedProxy…
0
votes
1 answer

ELB is as slow as its Idle Connection Timeout setting

I'm trying out ELB with a minimal configuration (HTTP 80 -> 3000), and for one just one EC2 instance. (I know that normally one would put at least two EC2 instances, but I'm just assessing ELB.) I've noticed that under this setup (which I assume…
deprecated
  • 153
  • 7
0
votes
0 answers

How could I dispatch the request by instances' type dynamically

How could I dispatch the request by instances' type dynamically I have a ELB contains an auto scaling group and an indenpendent ec2 machine However the indenpendent ec2 machine is t2.large and the instances in the auto scaling group are…