Centos设置时区和时间同步
- 设置时区
tzselect
2. 同步时区
安装 NTP
yum install -y ntp
修改配置文件
vi /etc/ntp.conf
更换为中国的 NTP 池服务器
server 0.cn.pool.ntp.org iburst
server 1.cn.pool.ntp.org iburst
server 2.cn.pool.ntp.org iburst
server 3.cn.pool.ntp.org iburst
最后启动ntp服务
systemctl start ntpd
方法二
cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime