使用date命令查看时区 [root@ltt1 ~]# date -R Thu, 28 Sep 2017 00:31:54 0800 我们国家的东八区( 0800) 查看clock系统配置文件 [root@ltt1 ~]# cat /etc/sysconfig/clock ZONE="Asia/Shanghai"
使用tzselect设置时区 按照提示操作
追加 [root@ltt1 ~]# vi /etc/profile TZ='America/Anguilla'; export TZ [root@ltt1 ~]# source /etc/profile
修改时区配置文件 vi /etc/sysconfig/clock ZONE="Asia/Shanghai" 链接到上海时区 rm -rf /etc/localtime ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime 查看时区已经更改 cat /etc/sysconfig/clock The time zone of the system is defined by the contents of /etc/localtime. This file is only for evaluation by system-config-date, do not rely on its contents elsewhere. ZONE="Asia/Shanghai"
[root@ltt1 ~]# date -R Wed, 27 Sep 2017 13:01:30 -0400 [root@ltt1 ~]# cat /etc/sysconfig/clock ZONE="Asia/Shanghai"
时间同步
yum install -y ntp #安装ntp service ntpd start #启动ntpd服务 chkconfig ntpd on #设置ntpd为开机启动