Keepalived 简单配置

作者: TinyKing86 | 来源:发表于2016-05-05 15:14 被阅读127次

参考文档 http://wenku.baidu.com/view/8e38022d2af90242a895e532.html

安装

解压文件

tar -xvf keepalived-x.x.x.tar.gz

进入文件夹keepalived-x.x.x

./configure

make && make install 

在安装过程中需要注意以下几点:

  • gcc环境
  • openssl环境
  • root权限

配置

# cp /usr/local/etc/rc.d/init.d/keepalived /etc/rc.d/init.d/ 
# cp /usr/local/etc/sysconfig/keepalived /etc/sysconfig/ 
# mkdir /etc/keepalived  
# cp /usr/local/etc/keepalived/keepalived.conf /etc/keepalived/ 
# cp /usr/local/sbin/keepalived /usr/sbin/ 

做成系统启动服务方便管理.

# vi /etc/rc.local   
/etc/init.d/keepalived start 

增加上面一行。

修改配置/etc/keepalived/keepalived.conf

! Configuation File for keepalived

global_defs {
    notification_email {
        acassen@firewall.loc    # 邮件地址,当异常时发邮件通知。可以是多个,每个一行
        
    }
    notification_email_from Alexandre.Cassen@firewall.loc
    smtp_server 192.168.200.1
    smtp_connect_timeout 30
    router_id LVS_DEVEL
    vrrp_skip_check_adv_addr
    vrrp_strict
}

vrrp_instance VI_1 {
    state MASTER    # 从机设为BACKUP
    interface   eth0   # 网卡接口
    mcast_src_ip 10.0.0.131  # 默认没有这项,加上这项后服务好用了
    priority  100  # 优先级,从机小与主机
    advert_int 1  
    authentication {
        auth_type PASS
        auth_pass 1111
    }
    virtual_ipaddress {
        10.0.0.111   # 虚拟ip设置,可以是多个,主从一致
    }
}

相关文章

网友评论

    本文标题:Keepalived 简单配置

    本文链接:https://www.haomeiwen.com/subject/bgudrttx.html