-
下载安装ntpdate,执行以下命令
yum -y install ntpdate
-
手工同步网络时间,执行以下命令,将从指定的服务器上同步时间
ntpdate 0.asia.pool.ntp.org
如果不行的话,换以下地址试试。
time.nist.govtime.nuri.net
0.asia.pool.ntp.org
1.asia.pool.ntp.org
2.asia.pool.ntp.org
3.asia.pool.ntp.org
-
使用crontab计划任务定时更新网络时间,修改crontab文件,在末尾增加
* */1 * * * ntpdate 0.asia.pool.ntp.org
每隔1小时同步一次时间。
编辑命令vim /etc/crontab
- 使用date命令查看
[root@localhost ~]# date
2019年 07月 24日 星期三 19:13:29 CST
- 系统时间同步到硬件,防止系统重启后时间被还原
hwclock --systohc
网友评论