zoukankan      html  css  js  c++  java
  • CentOS 7配置NTP客户端

     

    yum -y install  ntp

    保持服务器时间准确,对于业务系统的运行、数据库中时间的记录等至关重要。通常的做法是为服务器配置NTP客户端服务,让服务器自己定时去与NTP服务器同步时间。

    以CentOS 7服务器为例,为期配置NTP客户端的具体步骤如下:

    一、查看本机时间,确定NTP服务器的可用性(本例中以东北大学NTP服务器ntp.neu.edu.cn为例)

    1
    2
    # date       //查看本机时间
    # ntpdate ntp.neu.edu.cn  //确认NTP服务器的可用性

    二、配置NTP客户端

    编辑ntp.conf文件,为NTP客户端配置NTP服务器的地址ntp.neu.edu.cn

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    // 编辑NTP配置文件
    # vim /etc/ntp.conf
     
    // 注释配置文件中原有的NTP服务器,并在其中添加自己所需的NTP服务器地址
    # Use public servers from the pool.ntp.org project.
    # Please consider joining the pool (http://www.pool.ntp.org/join.html).
    # server 0.centos.pool.ntp.org iburst
    # server 1.centos.pool.ntp.org iburst
    # server 2.centos.pool.ntp.org iburst
    # server 3.centos.pool.ntp.org iburst
    server ntp.neu.edu.cn iburst

      

    三、将NTP配置为(自启动)服务,并启动运行

    1
    2
    3
    4
    # systemctl enable ntpd.service  //安装为服务
    Created symlinkfrom /etc/systemd/system/multi-user.target.wants/ntpd.service to /usr/lib/systemd/system/ntpd.service.
     
    # systemctl start ntpd  //启动运行

      

    四、检查NTP客户端运行状态

    1
    # systemctl status ntpd

      

    1
    # ntpstat

    1
    # watch ntpq -p

    ctrl+c 退出NTP监视器

    1
    2
    # ntpdate ntp.neu.edu.cn
    12 Jul 00:14:46 ntpdate[19640]: the NTP socketis in use, exiting//提示NTP socket已经被使用

      

      

     
  • 相关阅读:
    SQL SQL 连接 JOIN 例解。(左连接,右连接,全连接,内连接,交叉连接,自连接)[转]
    ADO.NET 1.基础(SqlCommand\ExecuteScalar\ExecuteReader\sqlDataAdapter)
    SQL 14.子查询
    winform 基础
    SQL – 12.索引 + 13.join
    判断是否为数字
    SQL 17.存储过程
    SQL 16.事务
    SQL 15.变量和流程控制
    SQL 18.触发器
  • 原文地址:https://www.cnblogs.com/jjp816/p/15103623.html
Copyright © 2011-2022 走看看