3

I am looking for an open source loadbalancer for linux. My requirements are simple. I want One load balancer infront of multiple webservers. It should be able to split the load evenly among the webserver using a round robin fashion. Easy to install and simple to use. Moreover I want to add webservers dynamically(on the go) to the loadbalancer without the need to stop/restart the loadbalancer.

Thanks for your help.

-Sethu

dmourati
  • 26,498
sethu
  • 371
  • 5
  • 16

4 Answers4

1

Have a look at LVS (ipvs) LinuxVirtualServer I'm using it for load-balancing a proxy cluster. It has both simple round-robin and more complicated balancing policies.

HUB
  • 6,980
1

Nginx allows you to change the configuration on the fly. See the section "Loading a New Configuration Using Signals" here

HTTP500
  • 4,861
1

haproxy will do this as well.

I have setup Keepalived for various clients. It automates all the IPVS stuff.

-1

Would a simple DNS load balancing work for you?

Alex
  • 3,129
  • 23
  • 28