时间主机(服务器端)首先检查系统中是否安装ntp包rpm -q ntp ----若没有执行yum -y install ntp 进行安装再执行上面命令进行检查查看ntp是否设置为开启启动状态:systemctl is-enabled ntp
时间主机(服务器端)
首先检查系统中是否安装ntp包
rpm -q ntp
----若没有执行yum -y install ntp 进行安装再执行上面命令进行检查
查看ntp是否设置为开启启动状态:
systemctl is-enabled ntpd
----若默认是disable禁用开机启动的disabled,执行chkconfig ntpd on 或者 systemctl enable ntpd 设置为开机自启动
启动ntp服务
systemctl start ntpd.service
编辑ntp.conf
vim ntp.conf
时间服务器的IP:172.24.6.141
执行 vim /etc/ntp.conf 打开ntp配置文件,找到server指定时间服务器的位置,这些条都注释掉;然后添加下面2行固定配置:
server 172.24.6.141
fudge 172.24.6.141 stratum 10
然后在restrict指定的两行下面追加一行: restrict 172.24.1.1 mask 255.255.255.0 nomodify notrap(这个配置根据自己的网关和网段配置,只要能保证局域网主机通信就可以)
配置好之后,保存并退出,执行 systemctl restart ntpd.service 重启ntp服务即可
查看ntp状态
ntpq -p(ntpstat)
客户端配置
同样执行上面的一些命令对ntp进行安装、启动、自启配置、状态查看等操作,配置文件依然是:/etc/ntp.conf,打开进行如下配置:
同样注释默认的server服务器,添加一行指定时间服务器位置: server 172.24.6.141 因为上面时间服务器地址是172.24.6.141
配置好之后,保存,重启ntp服务即可
systemctl restart ntpd.service
查看ntp状态
ntpq -p(ntpstat)
所有客户端都进行以上配置,都启动之后,集群会自动定期进行服务的同步,这样集群的时间就保持一致了
--结束END--
本文标题: linux集群时间同步
本文链接: https://lsjlt.com/news/244560.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0