How do I choose the number of connection for load balancer?

Posted by user105196 on Server Fault See other posts from Server Fault or by user105196
Published on 2012-09-17T07:55:37Z Indexed on 2012/09/17 9:40 UTC
Read the original article Hit count: 280

Filed under:

I want to add hardware load balancer for apache and I want to know how many people are connected to my server to to choose the type of load balancer:

  • Local Load Balancing with SSL - 250 Connections
  • Local Load Balancing with SSL - 500 Connections
  • Local Load Balancing with SSL - 1000 Connections

I run the following commands in the same time:

netstat -nt|grep -c :443 ( all connection wait and ESTABLISHED)
result : 1208

netstat -ant | grep 443 | grep EST | wc -l ( just ESTABLISHED connection)
result :106

My question: Whichever is the correct value to choose the load balancer all connection or just ESTABLISHED ?

© Server Fault or respective owner

Related posts about load-balancing