CentOS6.x下的ntp服务

广大1年前技术文章459

CentOS6.x下的ntp服务配置

192.168.1.1(node01) 负责与外网同步时间,同时作为内网的ntp服务

192.168.1.2(node02) 和内网192.168.1.1去同步时间,是ntp的客户端


1、查看ntp是否安装

rpm -qa |grep ntp


2、安装ntp

yum install -y ntp


3、设置开机自启动

chkconfig ntpd on


查看开机自启动状态

chkconfig --list ntpd

ntpd               0:off    1:off    2:on    3:on    4:on    5:on    6:off

在2、3、4、5 处是on表示开机自启


4、配置ntp时间同步

(1)配置内网ntp-server(node01)

vim /etc/ntp.conf


driftfile /var/lib/ntp/drift

#允许远程时间源与我们本地源同步,但不允许远程源查询或修改本本地系统服务

restrict default nomodify notrap nopeer noquery

#允许通过回环地址127.0.0.1的所有访问.也可以被收紧限制,但这样会影响一些本职的功能

restrict 127.0.0.1

restrict ::1

#本地网络主机限制较少。默认被注释了,放开注释,允许内网其他主机同步本机时间

restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap

#这里换成以下几个ntp服务器

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

server 1.asia.pool.ntp.org  #Asia

server 2.centos.pool.ntp.org #centos

server 3.pool.ntp.org  #Worldwide

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

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

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

restrict 2.centos.pool.ntp.org nomodify notrap noquery

restrict 3.pool.ntp.org nomodify notrap noquery

#上边列表中的时间服务器都不可用时,同本地时间同步

server  127.127.1.0     # local clock

fudge   127.127.1.0 stratum 10

 

includefile /etc/ntp/crypto/pw

keys /etc/ntp/keys

disable monitor


(2)配置内网NTP-Clients

vim /etc/ntp.conf

driftfile /var/lib/ntp/drift

#允许远程时间源与我们本地源同步,但不允许远程源查询或修改本本地系统服务

restrict default nomodify notrap nopeer noquery

#允许通过回环地址127.0.0.1的所有访问.也可以被收紧限制,但这样会影响一些本职的功能

restrict 127.0.0.1

restrict ::1

#本地网络主机限制较少。默认被注释了,放开注释,允许内网其他主机同步本机时间

restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap

#这里换成以下几个ntp服务器,主要是这步,加上要同步的ntp服务器即可

server 192.168.1.1  #内网ntp-server服务器

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

restrict 192.168.1.1 nomodify notrap noquery

#上边列表中的时间服务器都不可用时,同本地时间同步

server  127.127.1.0     # local clock

fudge   127.127.1.0 stratum 10

 

includefile /etc/ntp/crypto/pw

keys /etc/ntp/keys

disable monitor        




5、启动ntp服务

service ntpd start


6、查看ntp状态 

ntpstat 


7、查看同步网络中的NTP服务器

ntpq -pn





相关文章

NAS文件被删除问题排查

NAS文件被删除问题排查

一、问题现象客户业务方反馈服务器上挂载的nas文件被删除,业务中许多文件丢失,业务受到严重影响。需要我方协助排查。二、问题背景该nas挂载到两台业务服务器上,后端应用为java应用,存储内容为jpg、...

CDP实操--Ranger Tag-based策略验证(四)

CDP实操--Ranger Tag-based策略验证(四)

1.1Ranger Tag-based策略验证在Ranger webui里给allan_admin和sam_sec用户赋权,给予添加classification的权限使用allan_admin或者sa...

MySQL性能优化(五)字符集不一致导致的隐式类型转换

MySQL性能优化(五)字符集不一致导致的隐式类型转换

上一篇文章中,我们介绍了隐式类型转换。这里我们介绍另一种形式的隐式类型转换,由于字符集不一致,导致关联查询无法使用索引。一个例子SELECT *  FROM funds...

MySQL日期相关函数

一、当前时间--当前时间select current_timestamp();--当前时间 等价于 select current_timestamp();select now();--基本等价于以上两...

mysql高可用部署(主主模式)

添加主从同步用户1. 登陆mysqlmysql -uroot -p 2. 创建同步用户CREATE USER 'sync_user'@'%' IDENTIFIED BY '1qaz!QAZ'; 3. ...

EMR 配置 Hive on Spark

EMR 配置 Hive on Spark

Hive3 on spark 集成前置条件hadoop yarn环境正常oracle jdk 1.8版本1、spark2 下载准备https://archive.apache.org/dist/spa...

发表评论    

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。