调整服务器上的时间与本地一致,修复系统时区设置为EDT,比北京时间慢了12个钟头
1.备份
[root@192 ~]# cd /etc
[root@192 ~]# mv localtime localtime.bak
2.创建软连接把上海时间包连过去系统时间包
[root@192 ~]# ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
3.查看日期
[root@192 ~]# date
注意:
如果这时候时间还不对的话,可以执行以下命令进行同步
[root@192 ~]# ntpdate us.pool.ntp.org
如果提示不能使用命令,需要安装,安装该命令的命令
[root@192 ~]# yum install -y ntpdate