一般国外买的 VPS 时区都不是中国,这样 VPS 时间与本地时间就不一样,可以更改 VPS 时间为中国时区,这样时间就一致了,更重要的是某些程序如果服务器端和你客户端的时间不一致,会无法正确连接,比如v2ray。
安装ntp服务的软件包
sudo yum install -y ntp
将ntp服务设置为缺省启动
systemctl enable ntpd
启动ntp服务
sudo service ntpd restart
将系统时区改为上海时间 (亦即CST时区)
ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
手动同步
ntpdate us.pool.ntp.org
设置完成后执行命令检查一下当前时间是否与当地时间一致即可:
date
参考 https://www.mioshu.com/archives/113.html