[root@localhost ~]# date -r
fri, 07 dec 2018 04:38:28 -0500
先使用tzselect
根據提示選擇所在地區,最終生成時區
tz='asia/shanghai'; export tz
to the file '.profile' in your home directory; then log out and log in again.
然後編輯/etc/profile
檔案,新增tz='asia/shanghai'; export tz
,編輯完成後儲存,執行source /etc/profile
再次使用date -r
檢視時間
fri, 07 dec 2018 17:42:28 +0800
安裝 ntpdate
[root@localhost ~]# yum install ntpdate -y
前往 查詢可用的ntp服務,同步時間
[root@localhost ~]# ntpdate cn.ntp.org.cn
如同步出現錯誤no server suitable for synchronization found
,可嘗試使用
[root@localhost ~]# ntpdate -u cn.ntp.org.cn
或者將網域名稱改為ip centos修改時區,同步時間
檢視當前系統時區 檢視支援的時區 timedatectl list timezones 檢視所有時區 timedatectl list timezones grep asia 檢視亞洲時區 修改時區 修改為上海時區 timedatectl set timezone asia shanghai檢視修改...
centos 修改時區及NTP時間同步
yum install y ntp ntpdate us.pool.ntp.org hwclock w date 一 時區 1.檢視當前時區 date r 2.修改設定時區 方法 1 tzselect 方法 2 僅限於redhat linux 和 centos系統 timeconfig 方法 3 適...
centos 修改時區及NTP時間同步
在我們使用centos系統的時候,也許時區經常會出現問題,有時候改完之後還是會出錯,下面我們就來學習一種方法來改變這個狀況。如果沒有安裝,而你使用的是 centos系統 那使用命令 yum install ntp 然後 ntpdate us.pool.ntp.org 在vps上可能會有限制和問題 n...