通過(guò)以下步驟可在 linux 中設(shè)置時(shí)間同步:安裝 ntp 服務(wù)啟用 ntp 服務(wù)配置 ntp 服務(wù)器,添加可用服務(wù)器(如 time.google.com)重啟 ntp 服務(wù)需確保 ntp 服務(wù)器可訪問且穩(wěn)定,并定期檢查服務(wù)狀態(tài)。如有必要,謹(jǐn)慎使用 date -s 命令手動(dòng)調(diào)整系統(tǒng)時(shí)間。
在 Linux 中設(shè)置時(shí)間同步
如何設(shè)置 Linux 同步時(shí)間?
在 Linux 系統(tǒng)中設(shè)置時(shí)間同步,需要以下步驟:
安裝 NTP 服務(wù):
CentOS/Red Hat:yum install ntp
Debian/Ubuntu:apt install ntp
啟用 NTP 服務(wù):
CentOS/Red Hat:systemctl start ntpd
Debian/Ubuntu:service ntp start
配置 NTP 服務(wù)器:
編輯 /etc/ntp.conf 文件。
將 server 行注釋掉并添加可用的 NTP 服務(wù)器,例如:
#server 0.debian.pool.ntp.org server time.google.com
登錄后復(fù)制
重啟 NTP 服務(wù):
CentOS/Red Hat:systemctl restart ntpd
Debian/Ubuntu:service ntp restart
其他注意事項(xiàng):
確保使用的 NTP 服務(wù)器可訪問且穩(wěn)定。
定期檢查 NTP 服務(wù)的狀態(tài) (systemctl status ntpd 或 service ntp status)。
如果系統(tǒng)時(shí)間有較大差異,可以手動(dòng)調(diào)整時(shí)間,但應(yīng)謹(jǐn)慎操作。使用 date -s 命令可以設(shè)置系統(tǒng)時(shí)間,但要注意可能破壞系統(tǒng)日志等時(shí)間相關(guān)的功能。