去评论
海欣资源

如何安装NTP时间同步服务器

share
2022/05/22 20:07:59
1.安装ntp
        执行yum –y install ntp安装ntp

2.启动服务
systemctl start ntpd

3.设置开机自启动
systemctl enable ntpd
服务器配置(注意:ip仅供参考,请按照实际情况配置)

修改/etc/ntp.conf文件
restrict 192.168.0.0 mask 255.255.255.0   #添加此行--自己设置主机的ip加子网掩码;这句是手动增加的,意思是指定的192.168.0.0--192.168.0.254的服务器段都可以使用此段服务器

重启服务
systemctl restart ntpd
用ntpstat来检查效果【大概几秒钟就可以看到效果】


客户端配置(注意:ip仅供参考,请按照实际情况配置)
修改/etc/ntp.conf文件

#添加此行
server 192.168.231.3

#以下四行注释掉
# 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


重启服务
systemctl restart ntpd
用ntpstat来检查效果【大概需要等十五分钟,看到效果】