时间服务器配置(必须root用户)
(1)检查ntp是否安装 (最小安装是没有ntp服务,需要我们重新安装)
[root@hadoop101 ~]# rpm -qa|grep ntp
(2)去官网下载所需要的ntp rpm包,进行离线安装
官网地址 https://pkgs.org/download/ntp
所需安装包
ntp-4.2.6p5-29.el7.centos.x86_64.rpm
ntpdate-4.2.6p5-29.el7.centos.x86_64.rpm
autogen-libopts-5.18-5.el7.x86_64.rpm
或者从该地址下载 https://download.csdn.net/download/niupit/12019070
(3)下载完成后上传至服务器 /opt/module/ntp 文件夹下 执行下方安装指令(即可)
rpm -ivh ntp-4.2.6p5-29.el7.centos.x86_64.rpm ntpdate-4.2.6p5-29.el7.centos.x86_64.rpm autogen-libopts-5.18-5.el7.x86_64.rpm
(4)检查ntp是否安装成功,若成功也将rpm文件上传到各个服务器上重复上述安装
[root@hadoop101 ~]# rpm -qa | grep ntp
ntpdate-4.2.6p5-29.el7.centos.x86_64
ntp-4.2.6p5-29.el7.centos.x86_64
(5)我们选用101机器做为时间服务器,每隔1分钟 其他服务器都会从101拉取主机
(a)修改101机器上ntp配置文件
[root@hadoop101 ~]# vi /etc/ntp.conf
修改内容如下
(a)修改1(授权192.168.197.0-192.168.197.255网段上的所有机器可以从这台机器上查询和同步时间)
#restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap为
restrict 192.168.197.0 mask 255.255.255.0 nomodify notrap
(b)修改2(集群在局域网中,不使用其他互联网上的时间)
修改 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.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
(c)添加(当该节点丢失网络连接,依然可以采用本地时间作为时间服务器为集群中的其他节点提供时间同步)
server 127.127.1.0
fudge 127.127.1.0 stratum 1
(b) 修改/etc/sysconfig/ntpd 文件
增加内容如下(让硬件时间与系统时间一起同步)
SYNC_HWCLOCK=yes
(c) 启动ntp服务,并设置其开机启动
[root@hadoop101 ~]# systemctl start ntpd
[root@hadoop101 ~]# systemctl enable ntpd
(d)其他机器配置(必须root用户)
在其他机器配置1分钟与时间服务器同步一次
[root@hadoop102 ntp]# crontab -e
编写定时任务如下:
*/1 * * * * /usr/sbin/ntpdate hadoop101
上述功能保存后,就能每隔1分钟去同步101机器的时间