NTP(Network Time Protocol,网络时间协议)是用来使网络中的各个计算机时间同步的一种协议。它的用途是把计算机的时钟同步到世界协调时UTC,其精度在局域网内可达0.1ms,在互联网上绝大多数的地方其精度可以达到1-50ms。
NTP官方站点:http://www.ntp.org/ ,NTP服务基于C/S(Client/Server)架构,每台机器既可以是NTPserver,也可以为NTPclient。
在linux中有两种查看系统时间的方法:
date #查看系统时间 hwclock #查看硬件时间
实验环境: | centos 6.6 (x86_64)*2 |
IP地址: | |
NTP server | 192.168.2.254 |
NTP client | 192.168.2.2 |
在cenots中默认是没有安装NTPserver的我们需要手动安装,可使用RPM包安装、yum安装、编译安装,这里演示使用yum安装来达到快速完成的目的。
rpm -q ntp && yum install ntpd #判断当前系统是否安装ntpd (server与client都需要安装)
其主配置文件为/etc/ntp.conf,系统中还有一些别的目录是与时间相关的这里列一下。
/etc/sysconfig/clock | 设置本地时区的文件 |
/etc/localtime | 本地系统时间设定文件 |
/usr/share/zoneinfo/ | 各个时区所对应的目录都在此目录下 |
在搭建前首先与互联网上的时间服务器同步一下
cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime #设置为上海时间 ntpdate 202.112.31.197 #与互联网时间同步一下
接下来开始配置本地ntp时间服务器,打开配置文件/etc/ntp.conf,看下常用参数。
driftfile /var/lib/ntp/drift #解决NTP服务器校准时间时的传送延迟,driftfile后只能跟普通文件,不能为链接文件或其他文件。 restrict default kod nomodify notrap nopeer noquery #拒绝IPV4客户端向此服务器发起同步时间请求 restrict -6 default kod nomodify notrap nopeer noquery #拒绝IPV6客户端向此服务器发起同步时间请求 restrict 127.0.0.1 ###### restrict -6 ::1 ######这两个参数为进允许本机访问 server 0.centos.pool.ntp.org iburst ##指定上级的时间服务器这些都为NTP安装好后默认的
设置下内网客户端也可以向此服务器发起同步请求:
restrict 192.168.2.0 mask 255.255.255.0 nomodify
将软件安装完成后的时间服务器注释掉,添加刚才手动同步的地址
#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 202.112.31.197
这样NTPserver就已经搭建好了,使用service ntpd start启动ntp server
接下来配置客户端,将原来的server注释掉然后添加一行sever然后启动即可完成
#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 192.168.2.254
然后启动ntpd即可让服务器自动同步时间,如果需要开机启动的话使用chkconfig ntpd on即可,如果在client上手动同步时间出现"no server suitable for synchronzization found "的错误,则在server端中加入如下内容,然后重启服务再次同步。
server 127.127.1.1 fduge 127.127.0.1 stratum 10 refid NIST
时间: 2024-10-09 17:45:02