Home | 簡體中文 | 繁體中文 | 雜文 | 知乎專欄 | Github | OSChina 博客 | 雲社區 | 雲棲社區 | Facebook | Linkedin | 視頻教程 | 打賞(Donations) | About
知乎專欄多維度架構 微信號 netkiller-ebook | QQ群:128659835 請註明“讀者”

31.2. ntpdate

31.2.1. CentOS 7

# yum install ntpdate
# systemctl enable ntpdate
# systemctl start ntpdate
			
# ntpdate 172.16.3.51
			

或使用

# /usr/libexec/ntpdate-wrapper		
			

31.2.2. CentOS 6

使用 ntpdate 臨時更新時間

			
[root@dev1 ~]# ntpdate 192.168.3.5 && hwclock -w
 9 Aug 12:38:22 ntpdate[2538]: step time server 192.168.3.5 offset 3543.674078 sec
	 		
			

另外一個命令rdate同樣可以達到ntpdate目的,rdate是系統預設安裝。

過程 31.2. ntp client

  1. # yum install ntp
    				
    					
  2. # chkconfig ntpd on
    # service ntpd start				
    					
  3. vim /etc/ntp.conf
    #server 0.centos.pool.ntp.org
    #server 1.centos.pool.ntp.org
    #server 2.centos.pool.ntp.org
    server 192.168.3.5
    					

ntpd 啟動後,不能再使用ntpdate