[关闭]
@tsing1226 2015-12-30T16:03:47.000000Z 字数 724 阅读 651

linux

时间服务器搭建

  • 找一台机器作为时间服务器;
  • 所有机器都有这台时间服务器同步时间。

ntpd时间服务器搭建

查看系统自带ntp版本

sudo rpm -qa | grep ntp

查看时间服务器状态

sudo service ntp status

启动ntp时间服务器

 sudo service ntp start

设置开机启动

sudo chkconfig ntpd on
sudo chkconfig --list | grep ntpd

在时间服务配置

配置前做好备份

 cp  /etc/ntp.conf  /etc/ntp.bak.conf

修改内容如下:

    第一处:去掉注释,修改网段   
        # Hosts on local network are less restricted.
        restrict 192.168.2.101 mask 255.255.255.0 nomodify notrap
    第二处:增加注释
        #server 0.centos.pool.ntp.org
        #server 1.centos.pool.ntp.org
        #server 2.centos.pool.ntp.org
    第三处:去掉注释
        server  127.127.1.0     # local clock
        fudge   127.127.1.0 stratum 10

重新启动ntp时间服务器

sudo service ntpd restart

设置机器的时间与BIOS系统时间同步

    $ sudo vi /etc/sysconfig/ntpd

首行增加如下内容:

        `SYNC_HWCLOCK=yes`

所有的机器都与这台时间服务器进行同步时间
(定时任务,每过一段时间与时间服务器进行同步时间)

Linux Crontab定时

0-59/10 * * * * /usr/sbin/ntpdate bigdata-senior01.ibeifeng.com
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注