linux ntp 時間同步

2021-07-24 02:37:53 字數 1202 閱讀 9573

一:外網同步時間

1.檢視ntpd服務狀態 [

root@cdh sbin]# service ntpd status 

ntp: unrecognized service

說明 ntpd沒有安裝。

2.檢視是否存在ntp的yum源

[ root@cdh sbin]# yum list |grep ntp

3.如果有顯示出yum源則安裝ntp服務 [

root@cdh sbin]# yum -y install ntp;

首先啟動ntp服務:service ntpd start 即可,並

設定ntp服務,開機自啟動:chkconfig ntpd on。

[ root@cdh sbin]# ntpdate 

asia.pool.ntp.org

二:內網同步時間

1.內網時搭建時間伺服器,,,把cdh做為時間伺服器。修改cdh1中的/etc/ntp.conf

增加 restrict default kod nomodify notrap nopeer noquery

restrict -6 default kod nomodify notrap nopeer noquery

restrict default ignore

restrict 172.16.1.0 mask 255.255.255.0 nomodify notrap #172.16.1.0為本集群的ip段,只允許本ip段同步此ntp伺服器

server 127.127.1.0 #local clock

儲存,退出。

2.service ntpd restart;

3.使用

watch ntpq -p命令檢視:

3.在其他節點機器上也需要檢查ntp服務是否存在(service ntpd status ),無則安裝yum -y install ntp;

假如其他節點都不能連外網,則需要拷貝cdh這個節點機器下的

/usr/sbin/

ntpdate到其他節點的/usr/sbin/下,並執行chmod u+x  ntpdate;

4.然後在每台機器(除了cdh1之外的)上去同步cdh1上的時間,ntpdate cdh(每個節點機器上都要執行此句)。

linux ntp時間同步

2上傳tar包到伺服器,解壓編譯 root server tools tar zxf ntp 4.2.8p11.tar.gz root server tools cd ntp 4.2.8p11 root server ntp 4.2.8p11 configure prefix usr local n...

linux ntp時間同步

ntpdate 1.cn.pool.ntp.org url linux下ntpdate時間同步 ntp伺服器安裝配置 rpm ivh ntp 4.2.0.a.20040617 4.x86 64.rpm 或 yum y install ntp.x86 64 時間同步方法 同步命令 ntpdate nt...

linux ntp 時間同步

一.時間同步伺服器 可以將資料庫伺服器作為同步伺服器 ntp.conf 保持不變 啟動服務 service ntpd start 設定ntpd服務自啟動 chkconfig ntpd on 檢查 chkconfig list ntpd 二.客戶端配置 1.修改ntp.conf的server配置項。注...