共计 837 个字符,预计需要花费 3 分钟才能阅读完成。
1. 准备工作【每个节点都需要执行】
#首先安装ntp
yum install ntp -y
#安装完毕之后,启动服务
systemctl start ntpd.service
#设置开机自启动
systemctl enable ntpd.service
2. 三台服务器
三台服务器,【192.168.1.12】,【192.168.1.13】,【192.168.1.14】
3. ntp服务端设置
第一台服务器 192.168.1.12,作为 ntpserver,将他设置为同步外网时间(ntpd服务开启默认就同步了)
但是得设置允许内网网段可以连接它,将它作为内网的时间同步服务器,所以需要一个简单配置
修改 /etc/ntp.conf 文件,添加如下信息,表示允许网段来同步此服务器
# vim /etc/ntp.conf
restrict 192.168.1.0 mask 255.255.255.0 #添加此行
# 设置后,重启ntpd服务,用ntpstat来检查效果【大概几秒钟就可以看到效果】
systemctl restart ntpd
ntpstat
4. ntp客户端设置
第二、三台服务器 192.168.1.13,192.168.1.14,作为 ntpclient,将他设置为同步上面的 ntpserver,同样需要一个简单配置,分别在两个节点上做如下配置!
修改 /etc/ntp.conf 文件,注释掉外网时间服务器,添加本地服务器即可
# vim /etc/ntp.conf
server 192.168.1.12 #添加此行
# server 0.centos.pool.ntp.org iburst #以下四行注释掉
# server 1.centos.pool.ntp.org iburst
# server 2.centos.pool.ntp.org iburst
# server 3.centos.pool.ntp.org iburst
# 设置后,重启ntpd服务,用ntpstat来检查效果【大概需要等十五分钟,看到效果】
systemctl restart ntpd
ntpstat
正文完