美文网首页
Centos7时间服务器ntp配置

Centos7时间服务器ntp配置

作者: 啊布多 | 来源:发表于2021-06-27 10:11 被阅读0次
  • 安装ntp

yum install ntp

  • 编辑ntp配置文件

vim /etc/ntp.conf

  • 配置网络信息
restrict 192.168.179.21 nomodify notrap nopeer noquery          //当前节点IP地址
restrict 192.168.179.1 mask 255.255.255.0 nomodify notrap  //集群所在网段的网关(Gateway),子网掩码(Genmask)
  • 设置主节点
server 127.127.1.0
Fudge 127.127.1.0 stratum 10
  • 设置从节点
server 192.168.179.21
Fudge 192.168.179.21 stratum 10
  • 查看服务支行状态

netstat -anptu | grep 123

  • 启动ntp服务

service ntpd start

  • 查看ntp是否支行正常

ntpstat

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

ntpq -p

  • 查看ntpd进程的状态

watch "ntpq -p"

  • 设置开机启动

chkconfig ntpd on

  • 列出与上游服务器的连接

ntpq -p

  • 查看防火墙商品是否打开

firewall-cmd --zone=public --query-port=123/tcp

  • 开放端口

firewall-cmd --zone=public --add-port=123/tcp --permanent (permanent永久生效,没有此参数重启后失效)

  • 删除端口

firewall-cmd --zone=public --remove-port=123/tcp --permanent

  • 在启动服务前需要从服务器同步时间,同步命令

ntpdate ntp1.aliyun.com

附阿里云时间服务器列表
ntp1.aliyun.com
ntp2.aliyun.com
ntp3.aliyun.com
ntp4.aliyun.com
ntp5.aliyun.com
ntp6.aliyun.com
ntp7.aliyun.com

相关文章

  • (8)Linux_服务篇_NTP_DHCP

    NTP 描述:中心时间服务器,用于局域网服务器时间同步 安装软件:ntp 1. 配置路径:vim /etc/ntp...

  • 配置集群时间同步

    配置集群时间同步: 1.时间服务器配置(必须root用户) 检查ntp是否安装 2.修改ntp配置文件 [root...

  • 第十三周

    1、搭建时间服务器,日志服务器并简述sudo安全切换 1)安装ntp服务器 yum install ntp 配置文...

  • 笔记 时间同步服务器搭建

    ntp配置 需要搭建本地的时间同步服务器(非授时)参考:1.CentOS 6 安装 NTP Server 时间服务...

  • ntp时间同步配置

    安装 ntp 修改ntp配置文件 vi /etc/ntp.conf 添加内网ntp服务器。 systemctl s...

  • Chrony

    原文链接 之前centos6我们一直用的ntp时间服务器,虽然到CentOS7上也可以装ntp。但是各种坑啊。这次...

  • centos6-ntpd安装部署

    NTPD服务端 安装NTP软件: 检查远程ntp服务器是否可用: 配置ntp服务之前,先手动同步一下时间: 编辑N...

  • linux时间同步ntp服务的安装与配置

    安装NTP(server client) Server机器修改NTP配置文件,添加NTP服务器的网络位置 vi ...

  • ntp同步局域网下的时间

    时间服务器配置 查看ntp是否安装 修改ntp配置文件 修改授权网段,使得该网段的所有机器可以查询和同步本主机的时...

  • 集群时间同步

    时间同步的方式: 配置时间同步具体实操: 时间服务器配置(必须root用户) (1)检查ntp是否安装 (2)修改...

网友评论

      本文标题:Centos7时间服务器ntp配置

      本文链接:https://www.haomeiwen.com/subject/rdttultx.html