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

第十章   时间同步chrony

时间:2016-10-26 17:09:43      阅读:268      评论:0      收藏:0      [点我收藏+]

标签:linux

                 ********chrony时间同步服务*****
vim /etc/chrony.conf        /*时间同步配置文件
服务时间同步方:
1.注销已有接受服务
 3 #server 0.rhel.pool.ntp.org iburst                /*服务方必须注销接受其他时间同步的服务
  4 #server 1.rhel.pool.ntp.org iburst
  5 #server 2.rhel.pool.ntp.org iburst
  6 #server 3.rhel.pool.ntp.org iburst
2.设置允许的ip地址
# Allow NTP client access from local network.            /*打开允许同步时间的ip时间段
 23 allow 192.168/16
3.设置允许级别
# Serve time even if not synchronized to any NTP server.    /*设置服务级别
 30 local stratum 10
4.关闭防火墙                            (备注:时间同步可以不用关闭接受时间同步方的防火墙)
systemctl stop firewalld
5.重新启动chronyd服务
systemctl restart chronyd.service
接受时间同步方
1.设置同步服务器的ip地址
# Please consider joining the pool (http://www.pool.ntp.org/join.html)./*设置要同步服务器的ip 地址
  3 #server 0.rhel.pool.ntp.org iburst
  4 #server 1.rhel.pool.ntp.org iburst
  5 #server 2.rhel.pool.ntp.org iburst
  6 #server 3.rhel.pool.ntp.org iburst
  7 server 172.25.254.254 iburst
2.重新启动chronyd服务
systemctl restart chronyd.service
3.测试是否时间同步成功
chronyc sources -v
******设置时区*******
timedatectl      status            /*查看时区设置的情况        
        set-time        /*设置当前时间
        set-timezone        /*设置当前时区
        set-local-rtc 0|1    /*设定是否使用utc时间(utc伦敦时间)
以下为日志采集格式
$template WESTOS,"%timegenerated% %FROMHOST-IP% %syslogtag% %msg%\n"

%timegenerated%            /*现实日志时间
%FROMHOST-IP%            /*现实主机ip
%syslogtag%            /*日志内容
\n                /*换行符

第十章   时间同步chrony

标签:linux

原文地址:http://12126441.blog.51cto.com/12116441/1865815

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