美文网首页
centos7安装配置ntp时间同步

centos7安装配置ntp时间同步

作者: 彩色的炮灰 | 来源:发表于2023-07-18 10:17 被阅读0次

    三台服务器,其中一台作为ntp服务器端,另外两台作为ntp客户端
    1、安装ntp,每台服务器都需要安装ntp
    yum -y install ntp

    2、配置ntp服务端,编辑/etc/ntp.conf文件
    vim /etc/ntp.conf
    在/etc/ntp.conf中注释掉以下部分。

    #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
    

    在/etc/ntp.conf中新增以下部分。

    server 127.127.1.0
    fudge 127.127.1.0 stratum 10
    

    3、启动并设置开机自启

    systemctl start ntpd
    systemctl enable ntpd

    4、查看ntp服务状态
    systemctl status ntpd

    `

    5、查看ntp状态

    ntpstat


    image.png

    相关文章

      网友评论

          本文标题:centos7安装配置ntp时间同步

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