标签:blog rc.d ptr 根据 oar linux时间 str 没有 优先
当服务器多了,时间准确与否,一致与否是个大问题。虽然这个问题总是被忽略,但是统一一致的时间是很有必要的。下面说一下在局域网内配置Linux时间服务器的方法。
配置的环境及要求:
假设在192.168.0.0网段内,要以IP为192.168.0.101的Linux机器时间服务器。
192.168.0.101服务器能上外网,能与比较权威的公网时间服务器同步
同网段内的其他机器每小时自动向192.168.0.101同步时间
1. 安装NTP 服务,并备份配置文件
2. vi /etc/ntp.conf ,输入配置以下内容
3. NTP server的维护
4. 配置客户端LINUX客户端: (局域网内对时间有要求的机器)
每小时同NTP server进行一次时钟同步,并写入本机BIOS
1)检查ntp服务器有没有安装
rpm –qa|grep ntp;
2)修改配置文件/etc/ntp.conf
修改三处
1.打开restrict 192.168.60.0 mask 255.255.255.0 nomodify notrap;
2.注释掉
#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
3.添加
server 127.127.1.0
fudge 127.127.1.0 stratum 10
3)修改配置文件/etc/sysconfig/ntpd
在第一行添加:SYNC_HWCLOCK=yes
4)启动ntp服务
1.检查有没有启动
service ntpd status;
2.启动
service ntpd start;
3.设置下次系统启动,ntpd自动启动
chkconfig ntpd on;
5)设置cdh1节点的时间
执行date -s 17:55:00,修改完后,记得执行clock -w,把系统时间写入CMOS。
在cdh2、cdh3、cdh4集群,设置每十秒钟同步时间一次;
要在root用户下设置才有效。
crontab –e;
0-59/10 * * * * /usr/sbin/ntpdate cdh1;
手工同步时间
/usr/sbin/ntpdate cdh1;
标签:blog rc.d ptr 根据 oar linux时间 str 没有 优先
原文地址:http://www.cnblogs.com/cxhfuujust/p/7699291.html