centos 7 NTP同步设置

2022/6/24 5:19:38

本文主要是介绍centos 7 NTP同步设置,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

以前单位都是ubuntu,最近改到了centos,记录下ntp配置

1.安装ntp

yum install ntp ntpdate

2.启动ntp

systemctl start ntpd

systemctl enable ntpd

3.配置内部地址

vim  /etc/ntp.conf

注释

 

#server 0.centos.pool.ntp.org iburst
#server 1.centos.pool.ntp.org iburst
#server 2.centos.pool.ntp.org iburst
#server 3.centos.pool.ntp.org iburst

#局域网设置:server 127.0.0.1 iburst
server 10.2.2.102 iburst

# 配置允许上游时间服务器主动修改本机的时间
restrict 10.2.2.102 nomodify notrap noquery

 

4.重启NTP

systemctl restart ntpd

5.查看检查状态

ntpstat

 



这篇关于centos 7 NTP同步设置的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程