Linux中配置ntp服务

ops/2024/11/18 19:01:03/
NTP:是Network Time Protocol的缩写又 称网络时间协议,是用来使计算机时间同步化的一种协议,用来同步网络中各主机的时 间,在linux系统中早期使用ntp来实现,后来使用chrony来实现。Chrony 应用本身已经有 几年了,是网络时间协议的 (NTP) 的另一种实现。

一、安装ntp服务

1、首先检查系统中是否安装ntp包:rpm -q ntp
2、执行命令在线安装ntp:yum -y install ntp
3、现在设置开机自启动:systemctl enable ntpd 


二、配置ntp服务

时间服务器配置: vim /etc/ntp.conf

在文本中添加(/!!!前为要添加的内容)

# For more information about this file, see the ntp.conf(5) man page.# Record the frequency of the system clock.
driftfile /var/lib/ntp/drift# Permit time synchronization with our time source, but do not
# permit the source to query or modify the service on this system.
restrict default nomodify notrap nopeer noepeer noquery# Permit association with pool servers.
restrict source nomodify notrap noepeer noquery# Permit all access over the loopback interface.  This could
# be tightened as well, but to do so would effect some of
# the administrative functions.
restrict 192.168.29.28 nomodify notrap nopeer noquery //!!!
restrict 127.0.0.1
restrict ::1# Hosts on local network are less restricted.
restrict 192.168.1.2 mask 255.255.255.0 nomodify notrap //!!!# Use public servers from the pool.ntp.org project.
# Please consider joining the pool (http://www.pool.ntp.org/join.html).
# pool 2.openEuler.pool.ntp.org iburst
server 127.127.1.0 //!!!
Fudge 127.127.1.0 stratum 10 //!!!# Reduce the maximum number of servers used from the pool.
tos maxclock 5# Enable public key cryptography.
# crypto
1)启动ntp服务

     service ntpd start

     systemctl restart ntpd.service 

 2)通过命令timedatectl查看,ntp服务是否生效

(若NTP enabled: no,执行命令timedatectl set-ntp yes)

3)查看ntp服务器有无和上层ntp连通

4)查看ntp服务器与上层ntp的状态


http://www.ppmy.cn/ops/134771.html

相关文章

搜维尔科技:SenseGlove触觉反馈手套开箱+场景测试

搜维尔科技:SenseGlove触觉反馈手套开箱场景测试 SenseGlove触觉反馈手套开箱场景测试

【IC每日一题:IC常用模块--RR/handshake/gray2bin】

IC每日一题:IC常用模块--RR/handshake/gray2bin 1 RR仲裁器2 异步握手信号处理3 格雷码和二进制相互转换 1 RR仲裁器 应用:在多个FIFO请求pop时存在仲裁策略,还有比如多master申请总线控制权的仲裁等这些应用场合;假如当前是最高…

蓝桥杯每日真题 - 第7天

题目:(爬山) 题目描述(X届 C&C B组X题) 解题思路: 前缀和构造:为了高效地计算子数组的和,我们可以先构造前缀和数组 a,其中 a[i] 表示从第 1 个元素到第 i 个元素的…

PySpark——Python与大数据

一、Spark 与 PySpark Apache Spark 是用于大规模数据( large-scala data )处理的统一( unified )分析引擎。简单来说, Spark 是一款分布式的计算框架,用于调度成百上千的服务器集群,计算 TB 、…

优化C++设计模式:用模板代替虚函数与多态机制

文章目录 0. 引言1. 模板编程替换虚函数和多态的必要性1.1. MISRA C对类型转换和虚函数的规定1.2. 模板编程的优势:替代虚函数和多态机制 2. 设计模式改进2.1. 单例模式的改进与静态局部变量的对比(第二种实现) 2.2. 工厂模式的改进2.3. 观察者模式的改进2.4. 适配器…

docker 安装之 windows安装

文章目录 1: 在Windows安装Docker报19044版本错误的时候,请大家下载4.24.1之前的版本(含4.24.1)2: Desktop-WSL kernel version too low3: docker-compose 安装 (v2.21.0)4: 配置镜像源 1: 在Windows安装Docker报19044版本错误的时候&#xf…

STM32 HAL 矩阵按键(轮询方式)

1、简介 最近准备做个门禁系统,首先通过4x4矩阵按键实现密码的设定,查看网上资料完成了4x4矩阵按键的初步使用,整理一个傻瓜式操作方便后续的使用与复习。 2、实物图 3、STM32CubeMX配置 4、KEY.C /******************************************************************…

7.揭秘C语言输入输出内幕:printf与scanf的深度剖析

揭秘C语言输入输出内幕:printf与scanf的深度剖析 C语言往期系列文章目录 往期回顾: VS 2022 社区版C语言的安装教程,不要再卡在下载0B/s啦C语言入门:解锁基础概念,动手实现首个C程序C语言概念之旅:解锁关…