博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【Linux】【Services】【SaaS】Docker+kubernetes(2. 配置NTP服务chrony)
阅读量:5136 次
发布时间:2019-06-13

本文共 1546 字,大约阅读时间需要 5 分钟。

1. 简介

1.1. 这次使用另外一个轻量级的NTP服务,chrony。这是openstack推荐使用的ntp服务。

1.2. 官方网站:https://chrony.tuxfamily.org/

2. 环境

2.1. chrony:3.1-2.el7

3. 安装

3.1. 在所有机器上安装chrony

yum install chrony

4. 配置

4.1. 在10.30.2.81/82上配置服务端,/etc/chrony.conf

# Allow NTP client access from local network.allow 172.16.0.0/24

4.2. 在其他机器上配置客户端,/etc/chrony.con

server 172.16.0.81 iburstserver 172.16.0.82 iburst

如果使用ansible机器,也可以使用命令替换

sed -e '3,6s/^/#/g' -e '7iserver 172.16.0.81 iburst\nserver 172.16.0.82 iburst' /etc/chrony.conf

4.3. 启动服务,并设置开机启动

systemctl start chronyd && systemctl enable chronyd

4.4. 测试下连通性

[root@hctjosinfra01 named]# chronyc sources210 Number of sources = 4MS Name/IP address         Stratum Poll Reach LastRx Last sample               ===============================================================================^- ntp1.ams1.nl.leaseweb.net     2  10   377   237   +484us[ +484us] +/-  279ms^* news.neu.edu.cn               2  10   377   69m    -99us[ -113us] +/- 8995us^- 85.254.217.235                2  10   337   274    +18ms[  +18ms] +/-  221ms^- ntp7.flashdance.cx            2  10   377   680  +1681us[+1681us] +/-  151ms
[root@hctjosetcd01 ~]# chronyc sources210 Number of sources = 2MS Name/IP address         Stratum Poll Reach LastRx Last sample               ===============================================================================^- 172.16.0.81                   3   6    17    14   +219us[ +219us] +/-   12ms^* 172.16.0.82                   3   6    17    15   +773ns[  -47us] +/- 9668us

 

转载于:https://www.cnblogs.com/demonzk/p/8191713.html

你可能感兴趣的文章
2018-2019-1 20165308 20165317 20165331 实验二 固件程序设计
查看>>
IOS 其他 - 如何让 app 支持32位和64位
查看>>
springboot中的日志配置
查看>>
idea,git的使用
查看>>
数据库范式(1NF 2NF 3NF BCNF)
查看>>
LeetCode-Merge k Sorted Lists-合并k个排序链表-自底向上归并排序+链表操作
查看>>
【LeetCode】21. Merge Two Sorted Lists
查看>>
JVM类加载机制(加载,初始化,类加载器和双亲委派机制)
查看>>
python 元组列表转为字典
查看>>
echarts的基本使用
查看>>
极简MarkDown教程(常用样式)
查看>>
【NOIP 模拟赛】区间第K大(kth) 乱搞
查看>>
课后作业-阅读任务-阅读提问-4
查看>>
css动画插件
查看>>
高版本 eclipse 如何安装 fatjar 插件以及使用 fatjar 将 Java 程序打成 Jar 包
查看>>
推荐 30 款最好的免费项目管理软件
查看>>
Java volatile关键字
查看>>
软件工程结对编程第一次作业
查看>>
Proftpd mysql认证配置文档
查看>>
utc本地时间
查看>>