DNS域名服务器双master+ntp时间服务器双主+keepalived企业高可用方案 附脚本

一、环境

[[email protected] ~]# cat /etc/issue
Red Hat Enterprise Linux Server release 6.6 (Santiago)
Kernel \r on an \m
[[email protected] ~]# uname -r
2.6.32-504.el6.x86_64
角色 master-backup backup-master client
ip 192.168.42.9 192.168.42.11 192.168.42.110

二、时间同步服务器配置

对于时间同步服务器 一般装好系统会自带 也可以使用本地yum 安装

ntp 192.168.42.9/11上时间同步服务器配置:

[[email protected] ~]# cat /etc/ntp.conf 
# For more information about this file, see the man pages
# ntp.conf(5), ntp_acc(5), ntp_auth(5), ntp_clock(5), ntp_misc(5), ntp_mon(5).
driftfile /var/lib/ntp/drift
# Permit time synchronization with our time source, but do not
# permit the source to query or modify the service on this system.
restrict default kod nomodify notrap nopeer noquery
restrict -6 default kod nomodify notrap nopeer noquery
# Permit all access over the loopback interface.  This could
# be tightened as well, but to do so would effect some of
# the administrative functions.
restrict 192.168.42.100 mask 255.255.255.0 nomodify notrap
restrict -6 ::1
# Hosts on local network are less restricted.
#restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap
# Use public servers from the pool.ntp.org project.
# Please consider joining the pool (http://www.pool.ntp.org/join.html).
server 127.127.1.0
#server 1.rhel.pool.ntp.org iburst
#server 2.rhel.pool.ntp.org iburst
#server 3.rhel.pool.ntp.org iburst
#broadcast 192.168.1.255 autokey# broadcast server
#broadcastclient# broadcast client
#broadcast 224.0.1.1 autokey# multicast server
#multicastclient 224.0.1.1# multicast client
#manycastserver 239.255.254.254# manycast server
#manycastclient 239.255.254.254 autokey # manycast client
# Enable public key cryptography.
#crypto
includefile /etc/ntp/crypto/pw
# Key file containing the keys and key identifiers used when operating
# with symmetric key cryptography. 
keys /etc/ntp/keys
# Specify the key identifiers which are trusted.
#trustedkey 4 8 42
# Specify the key identifier to use with the ntpdc utility.
#requestkey 8
# Specify the key identifier to use with the ntpq utility.
#controlkey 8
# Enable writing of statistics records.
#statistics clockstats cryptostats loopstats peerstats

在192.168.42.9/11域名解析服务器上执行如下操作

[[email protected] ~]# cat /etc/named.conf 
//
// named.conf
//
// Provided by Red Hat bind package to configure the ISC BIND named(8) DNS
// server as a caching only nameserver (as a localhost DNS resolver only).
//
// See /usr/share/doc/bind*/sample/ for example named configuration files.
//
options {
listen-on port 53 { 127.0.0.1;192.168.42.9;192.168.42.100; };
listen-on-v6 port 53 { ::1; };
directory "/var/named";
dump-file "/var/named/data/cache_dump.db";
        statistics-file "/var/named/data/named_stats.txt";
        memstatistics-file "/var/named/data/named_mem_stats.txt";
allow-query     { any; };
recursion no;
dnssec-enable yes;
dnssec-validation yes;
dnssec-lookaside auto;
/* Path to ISC DLV key */
bindkeys-file "/etc/named.iscdlv.key";
managed-keys-directory "/var/named/dynamic";
};
logging {
        channel default_debug {
                file "data/named.run";
                severity dynamic;
        };
};
zone "jxnxs.com" IN {
type master;
file "zone.jxnxs";
};
zone "42.168.192.in-addr.arpa" IN {
type master;
file "42.168.192.db";
};
include "/etc/named.rfc1912.zones";
include "/etc/named.root.key";

192.168.42.9/11上正向解析配置文件

[[email protected] ~]# cat /var/named/zone.jxnxs 
$TTL 86400
@IN SOAns.jxnxs.com. hostmaster.jxnxs.com. (
2013110116
21600
3600
604800
86400)
INNSns.jxnxs.com.
nsINA192.168.42.100
mqin1.esbINA192.168.42.11
mqin2.esbINA192.168.42.12
mqin3.esbINA192.168.42.13
mqin4.esbINA192.168.42.14
mqin5.esbINA192.168.42.15

在192.168.42.9/11上反向解析配置文件

[[email protected] ~]# cat /var/named/42.168.192.db 
$TTL 86400
@IN SOAns.jxnxs.com hostmaster.jxnxs.com. (
2013110116
21600
3600
604800
86400);
INNSns.jxnxs.com.
193INPTRpim3.jxnxs.com.
194INPTRpim4.jxnxs.com.
195INPTRpim5.jxnxs.com.
196INPTRpim6.jxnxs.com.
197INPTRpim7.jxnxs.com.

在192.168.42.9上的keepalived的配置文件如下

[[email protected] ~]# cat /etc/keepalived/keepalived.conf 
! Configuration File for keepalived
global_defs {
   router_id DNS1
}
vrrp_script chk_named_port {
   script "/data/script/named.sh"
   interval 2
}
vrrp_instance VI_1 {
    state MASTER
    interface eth0
    virtual_router_id 88
    priority 100
    advert_int 1
    authentication {
        auth_type PASS
        auth_pass 1234
    }
   track_script {
        chk_named_port
    }
    virtual_ipaddress {
        192.168.42.100/24
 }
     notify_master /data/script/named_stat_change.sh
}

在192.168.42.11上的keepalived的配置文件如下

[[email protected] ~]# cat /etc/keepalived/keepalived.conf 
! Configuration File for keepalived
global_defs {
   router_id DNS1
}
vrrp_script chk_named_port {
   script "/data/script/named.sh"
   interval 2
}
vrrp_instance VI_1 {
    state BACKUP
    interface eth0
    virtual_router_id 88
    priority 80
    advert_int 1
    authentication {
        auth_type PASS
        auth_pass 1234
    }
   track_script {
        chk_named_port
    }
    virtual_ipaddress {
        192.168.42.100/24
 }
     notify_master /data/script/named_stat_change.sh
}

192.168.42.9/11上keepalived状态监测脚本

[[email protected] ~]# cat /data/script/named.sh
#!/bin/bash
named_status1=`ps -C named --no-header |wc -l`
if [ $named_status1 -eq 0 ]
        then
                /etc/init.d/named restart
                sleep 2
                named_status2=`ps -C named --no-header |wc -l `
                if [ $named_status2 -eq 0 ]
                        then
                                /etc/init.d/keepalived stop
                fi
fi

192.168.42.9/11上keepalived为主时执行的脚本

[[email protected] ~]# cat /data/script/named_stat_change.sh
#!/bin/bash
ping_gateway_status=`ping -c 2 192.168.42.4|grep ttl=|wc -l`
if [ $ping_gateway_status -eq 0 ]
then
/etc/init.d/keepalived stop
else
/etc/init.d/named restart
fi

这是生产环境内网的一套dns+ntp+keeplived高可用实践方案,部署有问题的可以留言

时间: 2024-10-11 10:09:10

DNS域名服务器双master+ntp时间服务器双主+keepalived企业高可用方案 附脚本的相关文章

MySQL双主+keepalived实现高可用

mysql+keepalived实现高可用+主主复制模式 为了解决mysql的单点故障问题,衍生出很多mysql的高可用方案: keepalived+双主.MHA.PXC.MMM.Hearbeat+DRBD等,比较常用的一般是keepalived+双主,MHA和PXC 在此搭建实验环境,实现keepalived+mysql双主模式. 实验思路: 两台MySQL互为主从关系(双主),通过keepalived配置虚拟vip,实现当其中的一台MySQL数据库宕机后,应用能自动切换到另外一台MySQL数

Mysql+Keepalived双主热备高可用操作步骤详细解析

mysql+keepalived双主热备高可用的介绍: 我们通常说的双机热备是指两台机器都在运行,但并不是两台机器都同时在提供服务.当提供服务的一台出现故障的时候,另外一台会马上自动接管并且提供服务,而且切换的时间非常短.MySQL双主复制,即互为Master-Slave(只有一个Master提供写操作),可以实现数据库服务器的热备,但是一个Master宕机后不能实现动态切换.使用Keepalived,可以通过虚拟IP,实现双主对外的统一接口以及自动检查.失败切换机制,从而实现MySQL数据库的

Mysql+keeoalived双主热备高可用操作记录

我们通常说的双机热备是指两台机器都在运行,但并不是两台机器都同时在提供服务.当提供服务的一台出现故障的时候,另外一台会马上自动接管并且提供服务,而且切换的时间非常短.之前梳理了Mysql主从同步,下面说下Mysql+keeoalived双主热备高可用方案的实施. 1)Keepalived的工作原理是VRRP(Virtual Router Redundancy Protocol)虚拟路由冗余协议.在VRRP中有两组重要的概念:VRRP路由器和虚拟路由器,主控路由器和备份路由器. 2)VRRP路由器

Centos6系列搭建NTP时间服务器

NTP(Network Time Protocol,网络时间协议)是用来使网络中的各个计算机时间同步的一种协议.它的用途是把计算机的时钟同步到世界协调时UTC,其精度在局域网内可达0.1ms,在互联网上绝大多数的地方其精度可以达到1-50ms. NTP官方站点:http://www.ntp.org/ ,NTP服务基于C/S(Client/Server)架构,每台机器既可以是NTPserver,也可以为NTPclient. 在linux中有两种查看系统时间的方法: date        #查看系

NTP时间服务器

网络时间协议NTP(Network Time Protocol)是用于互联网中时间同步的标准互联网协议.NTP的用途是把计算机的时间同步到某些时间标准.目前采用的时间标准是世界协调时UTC(Universal Time Coordinated).NTP的主要开发者是美国特拉华大学的David L. Mills教授. NTP对于我们个人来说有什么用呢,简单的讲,当你的计算机时间不准确了,你可以接入到互联网,从网上同步一下时间,看多方便. 对于企业来说,当你有成百上千的计算机,都不能直接连接互联网,

开源软件包的安装及ntp时间服务器简析

linux 系统服务篇(-)一.NTP时间服务器 network time protocol    NTP服务器的使命:使局域网内服务器(或个人pc端)的时间保持一致.二.开源软件的使用步骤:    1.安装软件服务.        (1)源码方式安装            下载,解压源码(wegt 或 rz (我用CRT)tar xf)            分析安装平台  ./configure(一般是测试软件的安装环境,看缺少哪些必要的依赖安装包)            编译软件     

搭建内网NTP时间服务器

          搭建内网的NTP时间服务器 需求:搭建一台时间服务器,使得无外网的服务器可以同步时间. 一.环境 1. [[email protected] ~]# cat /etc/redhat-release 2. CentOS release 6.8 (Final) 3. [[email protected] ~]# hostname -I 4. 10.0.0.61 172.16.1.61 5. #外网10.0.0.61;内网172.16.1.61 二.安装ntp并检查是否安装成功 1

Centos 6.3 下实现ntp时间服务器

网络时间协议NTP(Network Time Protocol)是用于互联网中时间同步的标准互联网协议.NTP的用途是把计算机的时间同步到某些时间标准.目前采用的时间标准是世界协调时UTC(Universal Time Coordinated).NTP的主要开发者是美国特拉华大学的David L. Mills教授. NTP对于我们个人来说有什么用呢,简单的讲,当你的计算机时间不准确了,你可以接入到互联网,从网上同步一下时间,看多方便. 对于企业来说,当你有成百上千的计算机,都不能直接连接互联网,

ntp 时间服务器

NTP全称为{(Network Time Protocol(NTP)},用于在互联网或局域网个PC或服务器之间同步时间,且可实现加密方式同步时间,在IDC或机房当中时间同步非常重要,但是又不能去互联网同步时间,因此在内网搭建一台自己的NTP Server则十分有必要: 1.安装服务: ntp:主服务程序 ntpdate:时间同步命令 2.编辑配置文件: /etc/ntp.conf restrict 127.0.0.1 restrict 192.168.10.0 mask 255.255.255.