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同步设置的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-14Fetch / Axios学习:入门教程与实战指南
- 2024-11-14Typescript 类型课程入门教程
- 2024-11-14Fetch / Axios课程:初学者必看的网络请求教程
- 2024-11-14Styled-components课程:初学者指南
- 2024-11-13pre-commit 自动化测试课程:入门教程与实践指南
- 2024-11-13什么是AIGC?如何使用AIGC技术辅助办公?
- 2024-11-13Slicm 框架怎么进行用户认证?-icode9专业技术文章分享
- 2024-11-13在查询时将 map_coord 列的值转换为字符串有哪些方法?-icode9专业技术文章分享
- 2024-11-13如何将微信地区改成自定义文案?-icode9专业技术文章分享
- 2024-11-13DNS 缓存存在问题有哪些症状和解决方法?-icode9专业技术文章分享