有关nginx负载均衡的四种配置方案,包括了轮询、最少连接、IP地址哈希、基于权重的负载均衡等,用nginx作负载均衡就是这么简单。 nginx负载均衡配置简单,主要用于负载web页面的后端请求、负责缓存静态文件内容。 这里介绍四种常用的负载均衡方法,对比下各自的优缺点。
1、轮询(nginx负载均衡)
nginx配置文件:
http{
upstream sampleapp { server <<dns entry or IP Address(optional with port)>>; server <<another dns entry or IP Address(optional with port)>>; } .... server{ listen 80; ... location / { proxy_pass http://sampleapp; } } 上面只有1个DNS入口被插入到upstream节,即sampleapp,同样也在后面的proxy_pass节重新提到。 2、最少连接 Web请求会被转发到连接数最少的服务器上。
配置文件:
http{
upstream sampleapp { least_conn; server <<dns entry or IP Address(optional with port)>>; server <<another dns entry or IP Address(optional with port)>>; } .... server{ listen 80; ... location / { proxy_pass http://sampleapp; } } 只是在upstream节添加了least_conn配置。其它的配置同轮询配置。
3、IP地址哈希 可以使用基于IP地址哈希的负载均衡方案。如此,同一客户端连续的Web请求都会被分发到同一服务器进行处理。
配置文件:
http{
upstream sampleapp { ip_hash; server <<dns entry or IP Address(optional with port)>>; server <<another dns entry or IP Address(optional with port)>>; } .... server{ listen 80; ... location / { proxy_pass http://sampleapp; } } 以上例子中,只是在upstream节添加了ip_hash配置。其它的配置同轮询配置。 4、基于权重的负载均衡 基于权重的负载均衡即Weighted Load Balancing,这种方式下,可以配置Nginx把请求更多地分发到高配置的后端服务器上,把相对较少的请求分发到低配服务器。
配置文件:
http{
upstream sampleapp { server <<dns entry or IP Address(optional with port)>> weight=2; server <<another dns entry or IP Address(optional with port)>>; } .... server{ listen 80; ... location / { proxy_pass http://sampleapp; } } 以上例子中,在服务器地址和端口后weight=2的配置,每接收到3个请求,前2个请求会被分发到第一个服务器,第3个请求会分发到第二个服务器,其它的配置同轮询配置。 另外,基于权重的负载均衡和基于IP地址哈希的负载均衡可以组合在一起使用。 (责任编辑:IT) |