千家信息网

centos6.8 配置服务器NTP服务

发表于:2025-01-25 作者:千家信息网编辑
千家信息网最后更新 2025年01月25日,centos6.8 配置服务器NTP服务1.1. 配置服务器NTP服务1.1.1. 安装和配置NTP先查看是否安装NTPrpm -qa|grep ntp如果没有安装则安装yum -y install
千家信息网最后更新 2025年01月25日centos6.8 配置服务器NTP服务

centos6.8 配置服务器NTP服务

1.1. 配置服务器NTP服务

1.1.1. 安装和配置NTP

  1. 先查看是否安装NTP

rpm -qa|grep ntp

  1. 如果没有安装则安装

yum -y install ntp

  1. 设置东八区时区为当前时区

rm -rf /etc/localtime

cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime

  1. 手动同步下网络时间

ntpdate -u cn.pool.ntp.org

  1. 安装后进行配置

vi /etc/ntp.conf

//添加如下配置内容

//默认允许任何主机进行时间同步

restrict default ignore

//中国这边最活跃的时间服务器

server cn.pool.ntp.org perfer # 中国国家受时中心

server 0.cn.pool.ntp.org # 1.cn.pool.ntp.org

server 1.cn.pool.ntp.org

server asia.pool.ntp.org

server 0.asia.pool.ntp.org

server1.asia.pool.ntp.org

//允许上层时间服务器主动修改本机时间

restrict cn.pool.ntp.org nomodify notrap noquery

restrict 0.cn.pool.ntp.org nomodify notrap noquery

restrict 1.cn.pool.ntp.org nomodify notrap noquery

restrict asia.pool.ntp.org nomodify notrap noquery

restrict 0.asia.pool.ntp.org nomodify notrap noquery

restrict 1.asia.pool.ntp.org nomodify notrap noquery

//外部时间服务器不可用时,以本地时间作为时间服务

server 127.127.1.0 # local clock

fudge 127.127.1.0stratum 10

1.1.2. 设置NTP服务自启动

  1. 设置ntp为自启动项

chkconfig ntpd on

  1. 查看启动项2345是否打开

chkconfig --list ntpd

  1. 启动NTP服务

/etc/init.d/ntpd restart

  1. 查看服务和监听,看红色标注的地方,表示当前ip连接和监听已正确

netstat -tlunp | grep ntp

  1. 查看NTPD服务情况,要等5-10分钟后再查

//1查看时间同步状态。启动后,一般需要5-10分钟左右的时候才能与外部时间服务器开始同步时间。可以通过命令查询NTPD服务情况

ntpstat

//2查看网络中的NTP服务器,同时显示客户端和每个服务器的关系

ntpq -p

//出现了红框中local,说明本地时钟源配置成功


0