Linux配置时间服务器时间同步

本文详细介绍了在CentOS系统中配置时间同步的步骤,包括安装ntp依赖包,服务端与客户端配置,修改ntp.conf文件,启动和启用服务,以及创建开机自动同步时间的脚本。遇到服务器重启后时间问题时,也提供了解决方案。
摘要由CSDN通过智能技术生成

CentOS配置时间同步

客户端配置

1. 下载ntp依赖包

官方网址

附件有放

ntpdate-4.2.6p5-29.el7.centos.2.x86_64.rpm
autogen-libopts-5.18-5.el7.x86_64.rpm
ntp-4.2.6p5-29.el7.centos.2.x86_64.rpm

2.服务端客户端都安装ntp

rpm -ivh ntpdate-4.2.6p5-29.el7.centos.2.x86_64.rpm
rpm -ivh autogen-libopts-5.18-5.el7.x86_64.rpm
rpm -ivh ntp-4.2.6p5-29.el7.centos.2.x86_64.rpm

3. 服务端配置

4. 客户端配置

4.1修改配置
vi /etc/ntp.conf
需要修改的部份:
restrict 10.11.2.25 nomodify notrap noquery

#注释掉其他上游时间服务器
#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 10.11.2.25 iburst
Fudge 10.11.2.25 stratum 10
4.2 启动服务
systemctl start ntpd.service
4.3 设置开机自启
systemctl enable ntpd.service
4.4 查看开机自启情况
systemctl list-unit-files | grep ntpd
4.5 查看同步是否生效
timedatectl
ntpstat

在这里插入图片描述

4.6 查看延时

ntpq -p

在这里插入图片描述

5 服务器重启后同步不生效

因为服务器重启后时间变成出厂时间,与当前时间差距过大,导致ntpd不同步。此时需要手动同步一下。

ntpdate 10.11.2.25

6 开机自动同步时间脚本

每次开机需要手动同步时间还是很麻烦,因此创建一个同步脚本,并设置开机自启。

可见如下文档:通过 systemctl 配置开机服务自启动

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值