1.安裝ntp服務
yum install ntp -y ###安裝服務
systemctl start ntpd #####啟動服務
systemctl enable ntpd #####開機啟動
2.設定時區為shagnhai即cst時間
ln -sf /usr/share/zoneinfo/asia/shanghai /etc/localtime
3.配置ntp時鐘同步
ntpdate asia.pool.ntp.org
阿里雲ntp1.aliyun.com
ntp2.aliyun.com
ntp3.aliyun.com
ntp4.aliyun.com
ntp5.aliyun.com
ntp6.aliyun.com
ntp7.aliyun.com
這些時鐘同步伺服器位址從網上收集的應該夠用了。
將系統時間寫入硬體時間
hwclock --systohc
5.配置開機啟動校驗
vim /etc/rc.d/rc.local
/usr/sbin/ntpdate ntp1.aliyun.com > /dev/null 2>&1; /sbin/hwclock -w
6.配置定時任務
crontab -e
「時間根據自己需求而定「 ntpdate ntp1.aliyun.com > /dev/null 2>&1; /sbin/hwclock -w
時鐘同步方案
方案 1 粗略方案 在客戶端初始化的時候,拉取一次時間介面。記此時的伺服器時間為server init time,同時獲取到當前客戶端的時間,記為local init time。當客戶端需要獲取當前的準確時間的時候,首先得到客戶端的當前時間 記為local now time 那麼,當前最準確的時間就...
Linux時鐘同步
a 與阿里雲同步 ntpdate ntp4.aliyun.com b 區域網內部與某乙個節點同步 1 服務節點安裝ntpd軟體,並啟動。2 修改配置 etc ntp.conf a 解開第18行的注釋,並將網段設定正確 restrict 192.168.10.0 mask 255.255.255.0 ...
Linux 時鐘同步
與阿里雲同步 安裝ntpdate yum install y ntpdate 時間同步 ntpdate ntp4.aliyun.com 區域網內部與某乙個節點同步 1 服務節點安裝ntpdate軟體,並啟動。2 修改配置 etc ntp.conf a 解開第18行的注釋,並將網段設定正確 restr...