Linux配置时间服务器

[Author]: kwu 

Linux配置时间服务器,大数据集群时间同步是非常关键的,误差超过500ms就会有问题,通常配置内网的时间服务器。

本文以CentOS6.6为例介绍内网时间服务器的配置:

1、开启ntpd服务

[plain]  view plain copy
  1. chkconfig ntpd on  
  2. chkconfig --list ntpd  



2、配置服务端
vi /etc/ntp.conf :
[plain]  view plain copy
  1. server us.pool.ntp.org minpoll 4  
  2. fudge 127.127.1.0 stratum 1  
  3. restrict 127.0.0.1  
  4. restrict 192.168.0.0 mask 255.255.255.0 nomodify notrap  
  5. driftfile /var/lib/ntp/drift  

vi /etc/ntp/step-tickers
[plain]  view plain copy
  1. us.pool.ntp.org   

3、配置客户端
1) vi /etc/ntp.conf
[plain]  view plain copy
  1. server 192.168.2.245  
  2. fudge 127.127.1.0 stratum 2  
  3. restrict 127.0.0.1  
  4. driftfile /var/lib/ntp/drift  
  5. restrict 192.168.2.245 mask 255.255.255.255  

vi /etc/ntp/step-tickers文件内容置为时钟服务器IP地址 
[plain]  view plain copy
  1. 192.168.2.245  

2)或者
[plain]  view plain copy
  1. * * * * * /usr/sbin/ntpdate 192.168.2.245 | logger -t NTP  


4、重启服务端与客户的ntp服务
[plain]  view plain copy
  1. service ntpd restart  


5、测试时间同步
修改时间
[plain]  view plain copy
  1. date -s "2007-08-03 18:21:15"  

同步时间后恢复正确时间,查看
[plain]  view plain copy
  1. date  

你可能感兴趣的:(linux,服务器)