6

I am having problems configuring ELB for my servers.

I start 2 micro instances with the exact same conf and try to do Load Balancing. However they never pass the health check (HTTP port 80 path:"/").

  • Ping is ok on the website. So is telnet on 80.

How did the health check works? Am I doing anything really wrong?

EDIT:

  • Both Direct browser access and GET (via curl) works correctly (status 200)
diegodias
  • 165
  • 1
  • 1
  • 6

6 Answers6

2

I've come to the conclusion that the response, apart from being a HTTP 200 response, must contain certain headers. I've had a HTTP 200 returned from my tomcat server running on the instance not work, but a static html page served by httpd (also returning a 200 code) work fine. Looking at the headers, one of the few differences was that the tomcat one didn't contain the content-type. Not sure why that would make a difference, though.

1

I assume it performs an HTTP GET request to the specified path "/", of each of the servers and looks for a successful HTTP response code (200). Can you successfully make a GET request to http://<backend_server_IP>:80/ via a browser (or CLI tool such as wget or curl).

If the request is served successfully, the second thing to ask is: have you configured your servers' security group so that access to port 80 is limited to a particular source address or subnet? If so, you need to add ELB's security group to the filter. The group is always called:

amazon-elb/amazon-elb-sg

So you can just add this under the 'Source' field in the Security Groups section of the AWS Console.

James Little
  • 1,169
  • 6
  • 8
1

I have the same problem. I just have it checking TCP:80 as an interim solution (which works fine).

samuelkf
  • 383
  • 3
  • 8
1

You must be using a specific domain name on your web server. Or you set up your web server to meet any request (binding *) or follow the documentation.

mgorven
  • 31,399
0

so i've just got the http check to work by pointing it at a static html file (as opposed to a php page).

'/' does not work despite it returning a valid http status when using curl, etc. '/file.html' does however pass the health check.

samuelkf
  • 383
  • 3
  • 8
0
  • Firstly, Ensure the ELB security traffic has allowed traffic back from the instance, and the instance security group allows traffic from the ELB.
  • It was mentioned response must be 200
  • And finally do you have more than one interface from what I can tell it will choose randomly which interface.
  • ELB Needs to be in a subnet with internet route to IGW
Brent
  • 101