linux配置多台服务器时间同步.
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux配置多台服务器时间同步.相关的知识,希望对你有一定的参考价值。
参考技术A 一、设置A服务器为时间服务器(加入A服务器IP为172.18.102.2)1 修改 /etc/ntp.conf,如下所示:
命令:vi /etc/ntp.conf
内容:
# Undisciplined Local Clock. This is a fake driver intended for backup
# and when no outside source of synchronized time is available.
server 127.127.1.0 # local clock
#fudge 127.127.1.0 stratum 10
2 启动时间服务器,命令如下:
service ntpd status
service ntpd start
3 查看启动结果,如下所示:
命令:ntpq -p
结果:
remote refid st t when poll reach delay offset jitter
==============================================================================
*LOCAL(0) .LOCL. 5 l 2 64 377 0.000 0.000 0.000
4 设置自启动,命令如下:
chkconfig ntpd on
二、设置需要同步的服务器
1 修改 /etc/ntp.conf,如下:
命令:vi /etc/ntp.conf
内容:
# Undisciplined Local Clock. This is a fake driver intended for backup
# and when no outside source of synchronized time is available.
server 172.18.102.2 # local clock 与服务器A机时间同步
fudge 172.18.102.2 stratum 10
2 启动时间服务器,命令如下:
service ntpd status
service ntpd start
3 查看启动结果,如下所示:
命令:ntpq -p
结果:
remote refid st t when poll reach delay offset jitter
==========================《Linux就该这么学》一起学习linux
172.18.102.2 LOCAL(0) 6 u 5 64 1 1.377 -7077.8 0.000
4 设置自启动,命令如下:
chkconfig ntpd on
5 立即同步
ntpdate -d 172.18.102.2
Hadoop集群搭建06_设置linux时间同步
为了保证多台linux时间是同步的,通过ntp同步时间
#时间同步 使用yum安装ntp
yum -y install ntp
# 启动服务
systemctl start ntpd
#设置开机启动
systemctl enable ntpd
ntpstat
#需要修改ntp的配置文件 将里面的server 注释掉 替换成下面的内容
vi /etc/ntp.conf
server npt1.aliyun.com
server time.windows.com
server time.apple.com
以上是关于linux配置多台服务器时间同步.的主要内容,如果未能解决你的问题,请参考以下文章