CentOS 7安装NTPd服务

这算是一个基本的同步时间服务了,命令也很简单。
300px-NTP-Algorithm.svg.png

References:

通过yum直接安装:

[root@dlp ~]# yum -y install ntp

可选:更换服务器同步源

[root@dlp ~]# vi /etc/ntp.conf
# 18行: 添加允许接收请求的网络地址范围
restrict 10.0.0.0 mask 255.255.255.0 nomodify notrap
# 改变同步的服务器
#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 ntp1.jst.mfeed.ad.jp iburst
server ntp2.jst.mfeed.ad.jp iburst
server ntp3.jst.mfeed.ad.jp iburst

如果启动了防火墙,就打开123/UDP端口,NTP服务使用这个端口。

[root@dlp ~]# firewall-cmd --add-service=ntp --permanent 
success
[root@dlp ~]# firewall-cmd --reload 
success

启动并允许开机自启

[root@dlp ~]# systemctl start ntpd 
[root@dlp ~]# systemctl enable ntpd 

验证服务是否正常工作,像下面这样就可以

[root@centos-s-1vcpu-1gb-01 ~]# ntpq -p
     remote           refid      st t when poll reach   delay   offset  jitter
==============================================================================
-propjet.latt.ne 46.233.231.73    2 u   36   64  177    2.859   -2.050   1.144
+services.quadra 104.131.155.175  3 u   32   64  177    7.636    0.016   1.163
*t2.time.bf1.yah 98.139.133.62    2 u   32   64  177   61.716   -0.710   1.168
+ha82.smatwebdes 200.98.196.212   2 u   30   64  177   39.804    2.109   1.836

打完收工。

标签: none

添加新评论

ali-01.gifali-58.gifali-09.gifali-23.gifali-04.gifali-46.gifali-57.gifali-22.gifali-38.gifali-13.gifali-10.gifali-34.gifali-06.gifali-37.gifali-42.gifali-35.gifali-12.gifali-30.gifali-16.gifali-54.gifali-55.gifali-59.gif

加载中……