LVS原理详解及部署之三:手动部署LVS

一、环境需求&安装LVS软件

环境准备:三台虚拟机

        此环境是针对内部服务的LVS架构,如数据库,缓存,共享存储等业务。

虚拟机角色 IP地址 备注
LVS负载均衡器 192.168.41.181 VIP地址:192.168.40.17
http服务器 RS1192.168.41.31         
http服务器 RS2192.168.41.33         

阅读全文 >>

LVS的NAT设置

1.环境说明

        三台服务器一台作为 director ,两台作为 real server ,Diretcor 有一个外网 ip (192.168.119.110)和一个内网 ip(192.168.0.67),两个 real server 上只有内网 ip (192.168.0.66)和(192.168.0.65)并且需要把两个 real server 的内网网关设置为 diretcor 的内网 ip (192.168.0.67)

阅读全文 >>

keepalived 单独配置文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
! Configuration File for keepalived
global_defs {
notification_email {
lihuiyw@jd.com
}
notification_email_from lihuiyw@jd.com
smtp_server mail.jd.com
smtp_connect_timeout 30
router_id LVS_DEVEL
}
vrrp_script check_alive
{
script "/export/sh/check_nginx_alive.sh"
# check every 2 seconds
interval 2
# if failed, decrease 10 of the priority
weight -10
# require 2 failures for failures
fail 2
# require 1 sucesses for ok
rise 1
}
vrrp_instance VIP_${routerid}
{
state $role
interface $interface
virtual_router_id $routerid
priority $weight
advert_int 2
garp_master_delay 10
smtp_alert
authentication
{
auth_type PASS
auth_pass 123456
}
virtual_ipaddress
{
${vip}/24
}
track_interface
{
$interface
}
track_script
{
check_alive
}
}

haproxy+keepalived实现高可用负载均衡

        软件负载均衡一般通过两种方式来实现:基于操作系统的软负载实现和基于第三方应用的软负载实现。LVS就是基于Linux操作系统实现的一种软负载,HAProxy就是开源的并且基于第三应用实现的软负载。

        HAProxy相比LVS的使用要简单很多,功能方面也很丰富。当 前,HAProxy支持两种主要的代理模式:”tcp”也即4层(大多用于邮件服务器、内部协议通信服务器等),和7层(HTTP)。在4层模式 下,HAProxy仅在客户端和服务器之间转发双向流量。7层模式下,HAProxy会分析协议,并且能通过允许、拒绝、交换、增加、修改或者删除请求 (request)或者回应(response)里指定内容来控制协议,这种操作要基于特定规则。

阅读全文 >>