/etc/keepalived/keepalived.conf 如何配置
时间: 2024-05-16 18:11:06 浏览: 176
`/etc/keepalived/keepalived.conf` 是 Keepalived 的配置文件,用于实现高可用性服务,主要用于 IP 地址的故障转移和负载均衡。以下是一个简单的配置文件的示例:
```
! Configuration File for keepalived
global_defs {
notification_email {
acassen@firewall.loc
failover@firewall.loc
sysadmin@firewall.loc
}
notification_email_from Alexandre.Cassen@firewall.loc
smtp_server 192.168.200.1
smtp_connect_timeout 30
router_id LVS_DEVEL
}
vrrp_instance VI_1 {
state MASTER
interface eth0
virtual_router_id 51
priority 100
advert_int 1
authentication {
auth_type PASS
auth_pass 1111
}
virtual_ipaddress {
192.168.200.10
}
}
virtual_server 192.168.200.10 80 {
delay_loop 6
lb_algo rr
lb_kind DR
nat_mask 255.255.255.0
persistence_timeout 50
protocol TCP
real_server 192.168.200.1 80 {
weight 1
TCP_CHECK {
connect_timeout 10
nb_get_retry 3
delay_before_retry 3
connect_port 80
}
}
}
```
以上示例中定义了一个 VRRP 实例 VI_1,它通过检测 VIP 是否可用来实现高可用性服务。同时定义了一个虚拟服务器,它将请求转发到一个实际的服务器上。这里我们只提供了一个简单的配置文件示例,你可以根据自己的需求进行配置。
如果需要更详细的配置说明,请参考 Keepalived 官方文档。
阅读全文