局域网同步时钟ntp

搭了个cdh环境,无法连接外网,时间不同步,就选了一台机器作为NTP服务器,其它节点同步到此服务器

红字改为自己的服务器端的IP

 

服务器端(node1)

1、yum install ntp -y  安装ntp

2、chkconfig ntpd on  开机自启动

3、vi /etc/ntp.conf

4、从上到下改动的地方有

restrict default kod nomodify notrap nopeer noquery
restrict -6 default kod nomodify notrap nopeer noquery
restrict 127.0.0.1
restrict -6 ::1

restrict 192.168.21.0 mask 255.255.255.0 nomodify notrap
注释掉
# 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
# 允许上层时间服务器主动修改本机时间
restrict 0.cn.pool.ntp.org nomodify notrap noquery
restrict 1.cn.pool.ntp.org nomodify notrap noquery
restrict 2.cn.pool.ntp.org nomodify notrap noquery
restrict 3.cn.pool.ntp.org nomodify notrap noquery

# 外部时间服务器不可用时,以本地时间作为时间服务
server  127.127.1.0
fudge   127.127.1.0 stratum 10

 

6、ntpd -s node1 手动同步时间

7、service ntpd start 启动node01的ntpd服务

8、netstat -unlnp | grep ntpd  检查ntp端口是否已经开启  

udp        0      0 192.168.21.0:123        0.0.0.0:*                           424820/ntpd   

9、ntpq -p   查看网络中的NTP服务器,显示客户端和每个服务器的关系

     remote           refid      st t when poll reach   delay   offset  jitter
==============================================================================
 LOCAL(0)        .LOCL.          10 l    -   64    0    0.000    0.000   0.000

 

 

各节点

1、vi /etc/ntp.conf

2、自上到下改动有

restrict default kod nomodify notrap nopeer noquery
restrict -6 default kod nomodify notrap nopeer noquery
restrict 127.0.0.1
restrict -6 ::1
# 默认的服务器列表注释掉
# 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

# 从node01中同步时间
server 192.168.21.101

# 允许node01修改本地时间
restrict 192.168.21.101 nomodify notrap noquery

# 如果node01不可用,用本地的时间服务
server 127.127.1.0
fudge 127.127.1.0 stratum 10

3、ntpdate -u node01 每台客户端在启动ntpd服务之前,手动同步一下时间

4、service ntpd start

5、ntpq -p 

     remote           refid      st t when poll reach   delay   offset  jitter
==============================================================================
 node01         LOCAL(0)        11 u    6   64    1    0.152    0.025   0.000
*LOCAL(0)        .LOCL.          10 l    5   64    1    0.000    0.000   0.000
 

 

 

参考自https://cloud.tencent.com/developer/article/1336679,亲测有用,感谢

 

 

 

你可能感兴趣的:(故障解决)