码迷,mamicode.com
首页 > 其他好文 > 详细

CentOS 7 中使用NTP进行时间同步

时间:2016-08-05 18:11:47      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:centos   时间同步   

1、确认已经
ntp程序包:
 
# yum install ntp 
 
2、配置时间源
 
# vi /etc/ntp.conf 
server pool.ntp.org 
#可选择其他优先服务器
server 2.cn.pool.ntp.org
server 1.asia.pool.ntp.org
server 2.asia.pool.ntp.org 
# 允许上层时间服务器主动修改本机时间
restrict 2.cn.pool.ntp.org nomodify notrap noquery
restrict 1.asia.pool.ntp.org nomodify notrap noquery
restrict 2.asia.pool.ntp.org nomodify notrap noquery
server 127.0.0.1 # local 
clockfudge 127.0.0.1 stratum 10 
3、配置是否为其他PC提供时间服务
 # vi /etc/ntp.conf 
restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap 
 
4、配置开机时自动运行时间服务
 # chkconfig ntpd on 
 
5、启动或停止时间服务
 
# service ntpd start 
# service ntpd stop 
# service ntpd restart 
 
6、验证
ntp服务已经运行
 # pgrep ntpd 
 
7、初始同步
# ntpdate -u time.lib.tsinghua.edu.cn 
8、确认同步成功
# ntpq -p 
9、同时建议修改一下
 /etc/sysconfig/ntpd 文件
 #
 vi /etc/sysconfig/ntpd 
 SYNC_HWCLOCK=yes 
 # 改成
 yes 
吧!这样主机
 
BIOS 
的时间也会跟着一起改变的!
 
 
当然,如果要提供时间服务,还必须相应的设置
iptable
防火墙的配置。
CentOS
的时间服务
使用
udp 123
端口。

本文出自 “梦想照进现实” 博客,请务必保留此出处http://lookingdream.blog.51cto.com/5177800/1834685

CentOS 7 中使用NTP进行时间同步

标签:centos   时间同步   

原文地址:http://lookingdream.blog.51cto.com/5177800/1834685

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!