Linux 時間同步

2022-07-13 00:03:17 字數 1127 閱讀 4978

檢視硬體時間

hwclock

hwclock --show

hwclock -r

同步系統時間和硬體時間,可以使用hwclock命令。

以系統時間為基準,修改硬體時間

hwclock --systohc<==sys(系統時間)to(寫到)hc(hard clock)

hwclock -w

以硬體時間為基準,修改系統時間

hwclock --hctosys

hwclock -s

如果你的linux系統根本沒有ntpdate這個命令

yum

install ntp

安裝完了之後,你不要做什麼配置,也不需要,直接測試一下

ntpdate time

.nist.gov

22 oct 21:11:43 ntpdate[5014]: adjust time server 207.200.81.113 offset -0.018788 sec

如果出去上面的內容說明,同步成功了。然後在/etc/crontab裡面加上以下內容。

# example of job definition:

# .---------------- minute (0 - 59

) # | .------------- hour (0 - 23

) # | | .---------- day of month (1 - 31

) # | | | .------- month (1 - 12

) or jan,feb,mar,apr ...

# | | | | .---- day of week (0 - 6) (sunday=0 or 7

) or sun,mon,tue,wed,thu,fri,sat

# | | | | |# * * * * * user-name command to be executed

*/5 * * * * ntpdate time

.nist.gov #網域名稱或ip

每隔十分鐘同步一次。

同步時間 Linux設定時間同步

所有節點都要確保已安裝ntpd 在步驟 4已安裝 1.首先選擇一台伺服器作為時間伺服器。假設選定為node1.sunny.cn伺服器為時間伺服器。2.ntp伺服器的配置 修改ntp.conf檔案 vi etc ntp.conf 一共修改三處內容,將 去掉,並且將網段修改正確。restrict 192...

linux時間同步

cd usr sbin root localhostsbin wget root localhostsbin tar zxvf ntdate.tar.gz root localhost sbin ntpdate 210.72.145.44 這樣時間就正常了 但是我們不會每天都去檢視伺服器時間是否正確...

時間同步 linux

linux集群時間同步 1.設定主機時間準確 任意機器都可 如果不需要同步網路時間則可以省略這一步 1.1檢視本機時間和時區 date 1.2設定時區 tzselect 選擇後執行cp usr share zoneinfo asia shanghai etc localtime 這裡是redhat的...