CentOS7搭建NTP服务器及客户端同步时间

本文介绍了在CentOS7上搭建NTP服务器和客户端的方法,包括使用crontab定时同步时间,详细步骤涵盖了从服务端的安装、配置到客户端的设置和验证。
摘要由CSDN通过智能技术生成

一、搭建NTP服务一般有两种方式

1.NTP服务端+客户端crontab定时器定时执行ntpdate同步时间
2.NTP服务端+NTP客户端

注意:生产环境一般用2,自己测试一般用1,因为ntpdate是强制时间同步,不管程序是否运行,而ntp就刚好相反。

二、NTP服务端+客户端crontab定时器定时执行ntpdate同步时间

1.NTP服务端安装

1)查看系统是否安装了ntp,一般默认安装ntpdate

[root@node06 ~]# rpm -qa | grep ntp
ntpdate-4.2.6p5-29.el7.centos.2.x86_64

2)安装ntp

yum install ntp ntpdate -y

3)查看ntp服务

[root@node06 ~]# systemctl status ntpd
● ntpd.service - Network Time Service
   Loaded: loaded (/usr/lib/systemd/system/ntpd.service; disabled; vendor preset: disabled)
   Active: inactive (dead)

4)启动ntp服务

systemctl start ntpd 

5)服务端修改配置文件

vim /etc/ntp.conf
#注释掉其他上游时间服务器
#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 Server服务器
server 127.127.1.1
#配置时间服务器为阿里的ntpd Server服务器(有公网采取下面这种)
server ntp.aliyun.com

文本详细解释:

#系统与bios时间偏差记录
driftfile /var/lib/ntp/drift

#restrict限制操作,默认放开客户端所有操作
restrict default nomodify notrap nopeer noquery

#允许本地所有操作,后边没有了限制操作
restrict 127.0.0.1 
restrict ::1

#限制192.168.1.0网段内的服务器不能修改
#restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap

#日志路径
logfile /var/log/ntpd.log

#注释网络时间服务,让主机以本地时间为主
#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 127.127.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值