centos7 时区设置 时间同步
timedatectl
sudo yum install chrony -y
sudo systemctl enable chronyd
sudo systemctl start chronyd
sudo systemctl status chronyd
[jack@localhost ~]$ timedatectl
Local time: Tue 2024-01-30 14:09:57 CST
Universal time: Tue 2024-01-30 06:09:57 UTC
RTC time: Tue 2024-01-30 06:09:57
Time zone: Asia/Shanghai (CST, +0800)
NTP enabled: yes
NTP synchronized: yes
RTC in local TZ: no
DST active: n/a
对于较旧版本的CentOS系统,没有安装chrony,可以使用ntpdate来完成时间同步。
date // 查看当前时间
timedatectl set-timezone Asia/Shanghai // 设置时区为上海
在centos中使用ntp同步时间时常使用ntpdate命令,但是ntpdate命令已经被废弃了。
新的ntp时间同步方式是使用chrony,它也是centos中默认的时间同步服务。
如果需要使用chrony同步时间,可以使用以下命令: