Keepalived
1.VIP:10.107.144.125
2.Master:10.4.7.121
/export/servers/keepalived-1.2.13/conf/keepalived.conf
! Configuration File for keepalived
global_defs {
notification_email {
xxx@jd.com
}
notification_email_from xxx@jd.com
smtp_server mail.jd.com
smtp_connect_timeout 30
router_id LVS_DEVEL
}
vrrp_instance vrrp_125
{
state MASTER
interface eth0
virtual_router_id 125
priority 100
advert_int 2
garp_master_delay 10
smtp_alert
authentication
{
auth_type PASS
auth_pass 123456
}
virtual_ipaddress
{
10.107.144.125/24
}
track_interface
{
eth0
}
}
2.Slave:10.4.7.122
/export/servers/keepalived-1.2.13/conf/keepalived.conf
! Configuration File for keepalived
global_defs {
notification_email {
xxx@jd.com
}
notification_email_from xxx@jd.com
smtp_server mail.jd.com
smtp_connect_timeout 30
router_id LVS_DEVEL
}
vrrp_instance vrrp_125
{
state BACKUP
interface eth0
virtual_router_id 125
priority 60
advert_int 2
garp_master_delay 10
smtp_alert
authentication
{
auth_type PASS
auth_pass 123456
}
virtual_ipaddress
{
10.107.144.125/24
}
track_interface
{
eth0
}
}
原创:做时间的朋友
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 分享4款.NET开源、免费、实用的商城系统
· 全程不用写代码,我用AI程序员写了一个飞机大战
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
· 记一次.NET内存居高不下排查解决与启示
2021-02-07 异步编程CompletableFuture