CentOS7搭建NTP服务器及客户端同步时间

CentOS7搭建NTP服务器及客户端同步时间
一、搭建NTP服务器
1、查看服务端操作系统版本
[root@web ~]# cat /etc/redhat-release
CentOS Linux release 7.4.1804 (Core)

2、查看服务器是否安装ntp,系统默认安装ntpdate;
[root@web ~]# rpm -qa | grep ntp

3、安装ntp ntpdate,其中ntpdate默认安装,可以只安装ntp;
#yum install ntp ntpdate -y

4、修改配置文件,使该NTP服务器在不联网的情况下,使用本服务器的时间作为同步时间
#vim /etc/ntp.conf
把如下四行代码注释掉
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 127.127.1.0 iburst

5、启动ntp服务并次查看服务器状态
#systemctl start ntpd

systemctl status ntpd

6、查看是否同步状态
[root@web ~]# ntpq -p
remote refid st t when poll reach delay offset jitter

*LOCAL(0) .LOCL. 5 l 20 64 7 0.000 0.000 0.000

7、设置开机启动

systemctl enable ntpd

Created symlink from /etc/systemd/system/multi-user.target.wants/ntpd.service to /usr/lib/systemd/system/ntpd
service.
8、设置防火墙,打开udp123端口或者直接关闭防火墙(如关闭防火墙改步可跳过)

firewall-cmd --permanent --add-port=123/udp

success

firewall-cmd --reload

success
#iptables -L -n 查看防火墙已打开端口
二、客户端配置
1、查看客户端操作系统版本
[root@web ~]# cat /etc/redhat-release
CentOS Linux release 7.4.1804 (Core)

2、查看服务器是否安装ntp,系统默认安装ntpdate;
[root@web ~]# rpm -qa | grep ntp

3、安装ntp ntpdate,其中ntpdate默认安装,可以只安装ntp;
#yum install ntp ntpdate -y

4、修改配置文件,修改配置文件,将刚刚搭建好的NTP服务器作为客户端上游时间服务器
#vim /etc/ntp.conf
在这里插入图片描述
5、与本地ntpd Server同步一下
#ntpdate -u 192.168.0.163

  1. List item

6、启动ntp服务并次查看服务器状态
#systemctl start ntpd

systemctl status ntpd

7、查看同步状态

ntpq -p

 remote           refid      st t when poll reach   delay   offset  jitter

==============================================================================
*192.168.0.163 LOCAL(0) 11 u 21 64 377 0.068 -0.824 0.367

8、设置开机启动

systemctl enable ntpd

Created symlink from /etc/systemd/system/multi-user.target.wants/ntpd.service to /usr/lib/systemd/system/ntpd
service.

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
以下是在CentOS 7上搭建NTP时间服务器的步骤: 1.安装NTP软件包 ```shell yum install ntp -y ``` 2.配置NTP服务器 编辑`/etc/ntp.conf`文件,添加如下内容: ```shell # Use public servers from the pool.ntp.org project. # Please consider joining the pool (http://www.pool.ntp.org/join.html). 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 # Allow LAN traffic. restrict 192.168.0.0 mask 255.255.255.0 nomodify notrap ``` 其中,`server`行指定了NTP服务器使用的公共时间服务器,`restrict`行指定了允许访问NTP服务器的IP地址范围。 3.启动NTP服务 ```shell systemctl start ntpd ``` 4.设置NTP服务开机自启动 ```shell systemctl enable ntpd ``` 5.检查NTP服务状态 ```shell systemctl status ntpd ``` 如果NTP服务正在运行,则输出类似以下内容: ```shell ● ntpd.service - Network Time Service Loaded: loaded (/usr/lib/systemd/system/ntpd.service; enabled; vendor preset: enabled) Active: active (running) since Tue 2021-08-10 14:20:20 CST; 1h 5min ago Main PID: 1234 (ntpd) CGroup: /system.slice/ntpd.service └─1234 /usr/sbin/ntpd -u ntp:ntp -g ``` 6.检查NTP服务器是否正常工作 ```shell ntpq -p ``` 如果NTP服务器正常工作,则输出类似以下内容: ```shell remote refid st t when poll reach delay offset jitter ============================================================================== *0.centos.pool. .POOL. 16 p - 64 0 0.000 0.000 0.000 +1.centos.pool. .POOL. 16 p - 64 0 0.000 0.000 0.000 +2.centos.pool. .POOL. 16 p - 64 0 0.000 0.000 0.000 +3.centos.pool. .POOL. 16 p - 64 0 0.000 0.000 0.000 ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值