我是靠谱客的博主 烂漫小熊猫,最近开发中收集的这篇文章主要介绍时间同步服务器配置,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

.时间同步

之前时间同步一直有用到,但是一直没有自己搭建一个时间同步服务器

1.安装ntp

yum install -y ntp

2.修改配置文件

修改/etc/ntp.conf如下

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 0.cn.pool.ntp.org iburst
server 1.cn.pool.ntp.org iburst
server 2.cn.pool.ntp.org iburst
server 3.cn.pool.ntp.org iburst
然后将#restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap
改为restrict 0.0.0.0 mask 0.0.0.0 nomodify notrap

3.启动服务/设置服务自启动

systemctl enable ntpd
systemctl start ntpd

最后

以上就是烂漫小熊猫为你收集整理的时间同步服务器配置的全部内容,希望文章能够帮你解决时间同步服务器配置所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(34)

评论列表共有 0 条评论

立即
投稿
返回
顶部