脚本
# 安装ntp客户端
sudo dnf install chrony
# 配置
pool 2.centos.pool.ntp.org iburst给这一行加注释
sudo sed -i 's/^pool 2.centos.pool.ntp.org iburst/#&/' /etc/chrony.conf
# 添加3个阿里云NTP服务器
# echo -e "server ntp1.aliyun.com iburst\nserver ntp2.aliyun.com iburst\nserver ntp3.aliyun.com iburst" | sudo tee -a /etc/chrony.conf
# 添加ntp服务器
echo -e "server 192.168.10.91 iburst" | sudo tee -a /etc/chrony.conf
# 重启 chronyd 服务以应用更改
sudo systemctl restart chronyd
# 设置开机自启
sudo systemctl enable chronyd# 检查 NTP 同步状态
# chronyc tracking
其中192.168.10.91是ntp服务器ip
测试
更改时间:引号不能忘记
date -s '2022-11-11 11:11:11'
查看时间
输入下面命令
date