CentOS7将时区更改为GMT+8

引言

从国外购买的VPS默认时区为``GMT+0 (UTC),将其更改为中国时间GMT+8 (CTC)`多少看起来舒服一点。

更改时区

可以先执行命令查看当前时间:

1
date

这时应该会看到UTC的标识。

执行命令更改为上海时区:

1
cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime

提示cp: overwrite ‘/etc/localtime’? 时,键入y并回车。

执行命令设置时间自动同步(2):

1
2
3
yum install -y ntp

ntpdate us.pool.ntp.org

设置完之后再次执行命令查看当前时间:

1
date

检查无误后就完成啦。