CentOS7 部署 NTP 服务器进行时间同步

导读:本篇文章讲解 CentOS7 部署 NTP 服务器进行时间同步,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com

一、简介

NTP 是网络时间协议(Network Time Protocol)的简称,就是用来同步网络中各个计算机的时间的协议。

二、安装步骤

1、永久修改主机名称

hostnamectl set-hostname woniu

 2、关闭防火墙

关闭防火墙
systemctl stop firewalld.service
 
禁止开机启动
systemctl disable firewalld.service

3、安装ntp

yum install -y ntp

 4、编辑ntp配置文件

#编辑文件
vi /etc/ntp.conf

#日志配置
logfile /var/log/ntpd.log

#允许网段内客户端连接此服务器同步时间,但是拒绝让他们修改服务器上的时间
restrict 10.0.7.0 mask 10.0.7.255 nomodify notrap

#配置时间服务器(阿里云)
https://www.ntppool.org/zone/asia

server ntp1.aliyun.com
server ntp2.aliyun.com
server ntp3.aliyun.com

#在 /ntp.conf 中定义的 server 都不可用时,将使用 local 时间作为 ntp 服务提供给 ntp 客户端。
#建议配置,否则 ntp 服务器无法与公网 ntp 服务器同步时,其客户端也会无法同步
server 127.0.0.1
fudge 127.0.0.1 stratum 10

CentOS7 部署 NTP 服务器进行时间同步

5、同步时间

ntpdate -u ntp1.aliyun.com

6、启动ntp

systemctl start ntpd

7、查看ntp状态

systemctl status ntpd

8、开机自动启动ntp

systemctl enable ntpd

9、客户端配置

#编辑文件
vi /etc/ntp.conf

#日志配置
logfile /var/log/ntpd.log

#配置时间服务器
server 10.0.7.62

#启动ntp
systemctl start ntpd

#开机自动启动
systemctl enable ntpd

CentOS7 部署 NTP 服务器进行时间同步

三、 检查

1、设置服务器时间

date -s "2018-08-08 08:08:08"

2、把当前系统时间写入到CMOS中

clock -w

3、查看同步状态

ntpstat

CentOS7 部署 NTP 服务器进行时间同步

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/78069.html

(0)
小半的头像小半

相关推荐

极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!