大家好,欢迎来到IT知识分享网。
1.1 NTP 简介
NTP( Network Time Protocol,网络时间协议)是用来使网络中的各个计算机时间同步的一种协
议。它的用途是把计算机的时钟同步到世界协调时 UTC,其精度在局域网内可达 0.1ms,在互联
网上绝大多数的地方其精度可以达到 1-50ms。
NTP 服务器就是利用 NTP 协议提供时间同步服务的。
NTP服务端: c701 10.0.0.41
NTP客户端: c702 10.0.0.42
1.1.2 NTP服务器安装
yum -y install ntp
1.1.3 配置NTP服务
vim /etc/ntp.conf # restrict default kod nomodify notrap nopeer noquery # nomodify客户端可以同步 restrict default nomodify # 将默认时间同步源注释改用可用源 # 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 server ntp1.aliyun.com
1.1.4 重启ntp并设置开机自启
systemctl restart ntpd systemctl enable ntpd
2.1 客户端同步时间
[root@ c702 yum.repos.d]# systemctl stop ntpd [root@ c702 yum.repos.d]# ntpdate 10.0.0.41 6 Nov 18:36:39 ntpdate[2151]: adjust time server 10.0.0.41 offset -0.019067 sec
注意:此处需要等待服务端几分钟。
添加到定时任务
cat >>/var/spool/cron/root<<EOF #crond m01 */5 * * * * /usr/sbin/ntpdate 10.0.0.41 >/dev/null 2>&1 EOF
免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://yundeesoft.com/59513.html