1.检查系统时间date
2.检查硬件时间hwclock
若不一致,转至以下继续,若一致,那就当看着玩吧 3.安装ntp(默认都有安装)yum -y install ntp
开启ntpservice ntpd start
设置开机启动chkconfig ntpd on
尽量使用ntp服务,而不是ntpdate ntp是逐渐同步,ntpdate是直接修改 4.直接修改硬件时间与系统时间同步timedatectl set-local-rtc 1
或hwclock --systohc --localtime
部分系统无localtime文件,可执行以下 从本地可使用的时间文件,选择上海时区,拷贝为默认时间文件cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
或将localtime指向Shanghailn -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
因ntp默认只同步系统时间,所以 修改/etc/sysconfig/ntpd
文件 执行vi /etc/sysconfig/ntpd
添加SYNC_HWCLOCK=yes
,执行:wq
保存并退出 同时开启硬件同步
备选:同步到互联网标准时间(一般只要执行以上步骤即可)ntpdate cn.pool.ntp.org
若无法执行,则执行以下安装yum install -y ntpdate
来源:https://blog.csdn.net/sinat_26422099/article/details/89450753 本文做部分调整
原创文章,作者:cn,如若转载,请注明出处:https://daxiaraoming.com/106.html