Linux教程

Linux时间与日期自动同步网络时间中心|同步本地NTP服务

本文主要是介绍Linux时间与日期自动同步网络时间中心|同步本地NTP服务,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

目录

Linux如何设置主机自动同步网络时间中心?

作用:   实现主机同步本地时间。

1. 首先安装时间同步的服务

2. 自动同步网络时间中心

Linux如何设置自动同步网络时间中心本地NTP服务?

作用: 实现其他节点机同步主机时间

1. NTP服务器

2.开启本地NTP服务器

3.同步时间


Linux如何设置主机自动同步网络时间中心?


作用:   实现主机同步本地时间。

1. 首先安装时间同步的服务

yum install ntp -y

2. 自动同步网络时间中心

ntpdate cn.ntp.org.cn

Linux如何设置自动同步网络时间中心本地NTP服务


作用: 实现其他节点机同步主机时间

1. NTP服务器

vi /etc/ntp.conf     # 修改配置文件

 #========权限控制============

 restrict default kod nomodify notrap nopeer noquery 拒绝IPV4用户

 restrict -6 default kod nomodify notrap nopeer noquery 拒绝IPV6用户

 restrict 210.72.145.44 授权国家授时中心服务器访问本地NTP

 restrict 133.100.11.8 授权133.100.11.8访问本地NTP

restrict 127.0.0.1

restrict -6 ::1

restrict 192.168.88.2 mask 255.255.255.0 nomodify 本地网段授权访问

#=========源服务器===========

server cn.ntp.org.cn prefer 指定上级更新时间服务器,优先使用这个地址

#=========差异分析===========

driftfile /var/lib/ntp/drift

keys /etc/ntp/keys     

2.开启本地NTP服务器

systemctl start ntpd.service

3.同步时间

ntpdate 192.168.88.100     # 选择同步的主机ip


我是底线,,,留个三连支持一下吧

这篇关于Linux时间与日期自动同步网络时间中心|同步本地NTP服务的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!