知乎專欄 | 多維度架構 | 微信號 netkiller-ebook | QQ群:128659835 請註明“讀者” |
# yum install ntpdate # systemctl enable ntpdate # systemctl start ntpdate
# ntpdate 172.16.3.51
或使用
# /usr/libexec/ntpdate-wrapper
使用 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
# yum install ntp
# chkconfig ntpd on # service ntpd start
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