CentOS7之ntp服务搭建
Posted 时至IT职教
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS7之ntp服务搭建相关的知识,希望对你有一定的参考价值。
名称:CentOS7之ntp服务搭建
【入门级】
项目说明:
在工作中许多服务或代码运行时都是基于时间的,如果时间不一致会出现许多问题,而NTP服务就可以很好的解决这个问题。
搭建一台NTP服务器,让内网的其他设备通过它来进行时间同步,而这台服务器本身通过公网进行时间同步。
服务端:
客户端:
yum install ntp -y
(2) 编辑ntp服务的配置文件,设置上级NTP服务器为ntp1.aliyun.com,设允许内网网段来进行时间同步
vim /etc/ntp.conf
restrict 172.16.1.0 mask 255.255.255.0 nomodify notrap
server ntp1.aliyun.com iburst
(3) 启动服务,关闭防火墙与selinux
systemctl start ntpd
systemctl stop firewalld
setenforce 0
(4) 验证服务是否正常启动
ss -lntup|grep ntpd
ntpq -p
(5) 内网服务器测试是否能正常进行时间同步
vim /etc/hosts
172.16.1.11 client
修改时间
date -s "2019-09-03 16:00"
注意:确保客户端安装有ntpdate命令,否则无法实现时间同步功能
同步测试时间
ntpdate client
验证同步结果
date
以上是关于CentOS7之ntp服务搭建的主要内容,如果未能解决你的问题,请参考以下文章