为了账号安全,请及时绑定邮箱和手机立即绑定

Ntp时间服务器的搭建方法

标签:
Linux

ntp时间服务器步骤
第一步 搭建需要安装以下软件:

yum -y install ntp ntpdate
第二步 查找时间同步服务器

http://www.pool.ntp.org/zone/asia

第三步 修改配置文件:

vim /etc/ntp.conf

注释掉原来的 pool.ntp.org 项目的公共服务器默认列表添加新的服务器列表

server ntp.api.bz prefer # 优先访问同步的NTP服务器(上海) :ntp.api.bz
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

外部时间服务器不可用时,以本地时间作为时间服务

server 127.127.1.0 # local clock
fudge 127.127.1.0 stratum 10

允许内网其他机器同步时间

restrict xxx.xxx.xxx.xxx mask 255.255.255.0 nomodify
第四步 启动ntp服务

systemctl start ntpd
systemctl enable ntpd.service 设置开机启动服务
第五步、查看运行情况

监测服务器的运行

watch ntpq -p
第六步 内网机器同步时间方法

其他服务器可设置计划任务同步或者安装ntp服务平滑同步时间

00 /1 root /usr/sbin/ntpdate -u serverIP && /sbin/hwclock -w
注:
放置同步失败建议防火墙放开123 端口或者关闭防火墙

firewall-cmd --add-service=ntp --permanent
firewall-cmd --reload

查看硬件时间:hwclock --show
同步硬件时间为软件时间:hwclock -w
报错解决
问题一:
[root@nginx01 ~]# ntpdate 10.100.3.3
12 Oct 10:38:26 ntpdate19199: no server suitable for synchronization found

问题二:
NTP时间相差8个小时的解决办法:

rm -rf /etc/localtime
ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime

点击查看更多内容
1人点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消