linux配置ntp时间同步

linux配置ntp时间同步,第1张

概述一、安装ntf yum –y ×××tall ntp 二、配置ntp服务 1)修改所有节点的/etc/ntp.conf vi /etc/ntp.conf restrict 172.18.74.59 nomodify notrap nopeer noquery //当前节点IP地址 restrict 172.18.74.253 mask 255.255.255.0 nomodify notrap / 一、安装ntf

yum –y ×××tall ntp

二、配置ntp服务
1)修改所有节点的/etc/ntp.conf

vi /etc/ntp.conf
restrict 172.18.74.59 nomodify notrap nopeer noquery //当前节点IP地址
restrict 172.18.74.253 mask 255.255.255.0 nomodify notrap //集群所在网段的网关(Gateway),子网掩码(Genmask)

2)修改主节点/etc/ntp.conf

vi /etc/ntp.conf

在server部分添加一下部分,并注释掉server 0 ~ n

server 127.127.1.0
fudge 127.127.1.0 stratum 10

3)主节点以外,继续修改/etc/ntp.conf

vi /etc/ntp.conf

在server部分添加如下语句,将server指向主节点。

server 172.18.74.39
Fudge 172.18.74.39 stratum 10

三、启动ntp服务、查看状态
1)启动ntp服务

service ntpd start

2)查看ntp服务器有无和上层ntp连通

ntpstat

3)查看ntp服务器与上层ntp的状态

ntpq -p

四、设置开机启动

chkconfig ntpd on

查看从ntp服务状态可能会有如下错误inappropriate address 172.18.74.119 for the fudge command,line ignored经测试改了fudge的首字母为F就可以修复上述错误,看网上也都是小写的,很奇怪。几分钟后查看主从ntp主机的时间同步了,同步较慢稍等即可。

总结

以上是内存溢出为你收集整理的linux配置ntp时间同步全部内容,希望文章能够帮你解决linux配置ntp时间同步所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/1020982.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-23
下一篇 2022-05-23

发表评论

登录后才能评论

评论列表(0条)

保存