NTP服务搭建

 

一、准备环境

CentOS7操作系统,准备2台,一台作为对外主节点,也就是授时节点(ntp_server),另外一台为内部被授权节点
 
2、IP规划
主机名:IP
* ntp_server:192.168.131.131
* 被授时节点:192.168.131.133
 
3、配置host和ip映射(服务端和客户端分别配置)
 
vim /etc/hosts
#增加
192.168.131.131 ntp_server
 
#测试是否通
ping ntp_server
 
 
注意防火墙,阻塞ntp的使用端口
 

二、安装部署

yum –y install ntp

三、以下在ntp服务端操作

1.设置时区
统的时区一般在安装的时候就已经设置好了
 
 
2、对照一个相对准确的时间进行设置,设置命令如下:
date -s “2019-02-19 16:00:00”
 
3、写入BIOS
当更新完时间之后,需要将系统当前时间写入BIOS中,很简单,只需要执行一个命令即可,命令如下:
hwclock -w
 
4、配置文件如下:
[root@localhost opt]# cat /etc/ntp.conf

driftfile /var/lib/ntp/drift

restrict default kod nomodify notrap nopeer noquery
restrict -6 default kod nomodify notrap nopeer noquery

restrict 127.0.0.1
restrict -6 ::1
# Hosts on local network are less restricted.
restrict 192.168.131.0 mask 255.255.255.0 nomodify notrap

server 127.127.1.0
fudge 127.127.1.0 stratum 10

includefile /etc/ntp/crypto/pw

keys /etc/ntp/keys

disable monitor

 

四、启动检查

service ntpd start #启动
systemctl start ntpd
 
#remote中带星号(*)的为ntp挡圈选中的授时服务点,LOCAL表示本机
[root@localhost opt]# ntpq -p
     remote           refid      st t when poll reach   delay   offset  jitter
==============================================================================
*LOCAL(0)        .LOCL.          10 l    8   64  377    0.000    0.000   0.000

 

五、配置被授时节点

 
设置为ntp_server的时间
ntpdate ntp_server
配置文件:
[root@localhost ~]# cat /etc/ntp.conf

driftfile /var/lib/ntp/drift

restrict default nomodify notrap nopeer noquery

restrict 127.0.0.1
restrict ::1

server ntp_server iburst

includefile /etc/ntp/crypto/pw

keys /etc/ntp/keys

disable monitor

 

启动检查
service ntpd start
[root@localhost ~]# cat /etc/hosts
127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
::1         localhost localhost.localdomain localhost6 localhost6.localdomain6
192.168.131.131 ntp_server

 

 
 
等一会儿,被授结点的时间就与ntp server 同步了
ntpstate
会由不同步,变成同步状态。
 

你可能感兴趣的:(MySQL)