1,安装 NTP软件
bash
sudo yum -y install ntp
2,编辑配置文件
bash
sudo vim /etc/ntp.conf
3,修改配置
在ntp.conf
文件中,可以配置服务器从哪些上游时间源同步时间。如果你想让你的服务器对外同步时间,可以去掉restrict default ignore
这一行前面的注释符号,并将ignore
改为nomodify notrap nopeer noquery
bash
restrict default nomodify notrap nopeer noquery
4,将本机设置为NTP服务
bash
server 127.127.1.0 将当前主机作为时间服务器
fudge 127.127.1.0 stratum 8 //fudge和server必须一起用 stratum 8代表层数
5,配置时间服务器,如
bash
server 192.168.16.44 prefer //prefer 优先
6,设置开机自动启动
bash
systemctl enable ntpd
7,手动同步NTP时间,如下图则表示成功
bash
ntpdate 192.168.16.204
8,启动并查看状态
bash
systemctl restart ntpd //重启ntp服务
systemctl status ntpd //查看ntp服务