搭建時間服務器(linux)

咱們搭建集羣環境的時候,時間必須是要統一的,才能保證集羣數據的一致性。linux

通常操做是直接使用NTP,跟默認的時間服務器同步,可是最好仍是讓全部節點跟集羣中的某臺做爲時間服務器的節點同步。windows

步驟:(節點有NameNode1,NameNode2,DataNode1,DataNode2,DataNode3)centos

  1. 選擇一臺服務器做爲時間服務器。(DataNode1作爲時間服務器)
  2. 使用root用戶,查看服務器是否安裝ntp服務 
    rpm -qa|grep ntp

     沒有安裝的話使用yum install進行安裝。服務器

  3.   修改文件 /etc/ntp.conf,一共修改三處內容:
  4.   ①將#去掉。而且將網段修改正確。
    restrict 192.168.0.0 mask 255.255.255.0 nomodify notrap
  5.  ②將如下4個server進行#註釋掉
    #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
  6. ③最後添加倆句話:阿里雲

    server 127.127.1.0 #local clock
    fudge  127.127.1.0 stratum 10
  7. 編輯etc/sysconfig/ntpd文件
    # Drop root to id 'ntp:ntp' by default.
    SYNC_HWCLOCK=yes
    OPTIONS="-u ntp:ntp -p /var/run/ntpd.pid -g"
  8. 啓動ntpd服務,而且設置開機啓動操作系統

    systemctl start ntpd.service
    systemctl enable ntpd.service

     

  9. 每一個須要同步的子節點進行確認有沒有ntp。若是沒有的話就安裝下。
  10. root帳戶下在每一個須要同步的子節點編寫crontab任務(crontab -e)。這個任務的意義就是每10分鐘和master01同步下服務器時間。
    0-59/10 * * * * /usr/sbin/ntpdate master01.timer.cn

 

附:rest

1.做爲時間服務器的節點的時間校準能夠是人工指定(不與其餘集羣協做的狀況下),也能夠是跟其餘組織的時間服務器同步code

這裏只說第二種狀況。首先要確認當前服務器的時區server

將時區設爲上海blog

rm -rf /etc/localtime
ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime

而後經過定時任務,與阿里雲的時間服務器 ntp1.aliyun.com 同步(方法同上面第10步,ntp1~ntp7)

 

2.不一樣操做系統之間也是能夠作時間同步的。linux與windows之間同步是沒問題的。

相關文章
相關標籤/搜索