搭建NTP时间同步服务器

android同步outlook android同步ntp服务器搭建_android同步outlook


NTP服务器【Network Time Protocol(NTP)】是用来使计算机时间同步化的一种协议,它可以使计算机对其服务器或时钟源(如石英钟,GPS等等)做同步化,它可以提供高精准度的时间校正(LAN上与标准间差小于1毫秒,WAN上几十毫秒),且可介由加密确认的方式来防止恶毒的协议攻击。时间按NTP服务器的等级传播。按照离外部UTC源的远近把所有服务器归入不同的Stratum(层)中

NTP的目的是在无序的Internet环境中提供精确和健壮的时间服务。

搭建准备环境:

两台虚拟机

服务端

客户端

一、服务端配置:

1.下载

yum install ntp ntpdate -y

android同步outlook android同步ntp服务器搭建_IP_02


android同步outlook android同步ntp服务器搭建_运维_03


2.备份文件

cp /etc/ntp.conf /etc/ntp.conf.bak

android同步outlook android同步ntp服务器搭建_android同步outlook_04


3.编辑文件

vim /etc/ntp.conf 注意这里配置的是服务端的IP地址

android同步outlook android同步ntp服务器搭建_linux_05


android同步outlook android同步ntp服务器搭建_服务器_06


4.启动服务

service ntpd start

android同步outlook android同步ntp服务器搭建_运维_07


5.检测服务器是否同步

ntpq -p

android同步outlook android同步ntp服务器搭建_linux_08


6.关闭防火墙

systemctl stop firewalld

setenforce 0

android同步outlook android同步ntp服务器搭建_IP_09


7.因为两台虚拟机的IP一致,为了专门验证时间是否能同步,则专门调整修改一下服务机的时间。

android同步outlook android同步ntp服务器搭建_服务器_10

二、客户端配置

1.下载 yum install ntp ntpdate -y

android同步outlook android同步ntp服务器搭建_IP_11


2.编辑文件vim /etc/ntp.conf 注意这里添加的是客户机的IP地址

android同步outlook android同步ntp服务器搭建_IP_12


android同步outlook android同步ntp服务器搭建_服务器_13


3.关闭防火墙

systemctl stop firewalld

setenforce 0

android同步outlook android同步ntp服务器搭建_服务器_14


4.实现同步 -----用客户机验证是否能同步服务机的时间,因此这里填写服务机的IP地址

ntpdate 192.168.110.117(服务端ip)

android同步outlook android同步ntp服务器搭建_android同步outlook_15

解决报错:
在运行实现同步的时候会报错 8 Aug 03:39:10 ntpdate[8229]: no server suitable for synchronization found
解决方法:
关闭防火墙 systemctl stop firewalld
setenforce 0
调整时间的命令:timedatectl set-time 12:00:00 && date
验证并同步使用:ntpdate 192.168.110.117