Linux 修改时区并配置自动时间同步

1:安装ntp软件

yum install -y ntp

2:更新时区

rm -f /etc/localtime;sudo ln -s /usr/share/zoneinfo/Asia/shanghai /etc/localtime

3:同步时间

ntpdate -u ntp.aliyun.com

4:开启ntp服务并设置开机自启动

systemctl start ntpd

systemctl enable ntpd

你可能感兴趣的:(linux,服务器,运维)