Chinaunix首页 | 论坛 | 博客
  • 博客访问: 90137
  • 博文数量: 13
  • 博客积分: 464
  • 博客等级: 一等列兵
  • 技术积分: 185
  • 用 户 组: 普通用户
  • 注册时间: 2011-01-02 17:38
文章分类

全部博文(13)

文章存档

2012年(7)

2011年(6)

我的朋友

分类: LINUX

2012-01-11 11:26:45

CentOS中时间同步方法
 
  在CentOS 5不再区分客户端和服务器,只要配置了NTP,它就会提供NTP服务。
  1)确认已经ntp程序包:
  # yum install ntp
  2)配置时间源
  # vi /etc/ntp.conf
  server pool.ntp.org   #可选择其他优先服务器
  server 0.pool.ntp.org
  server 1.pool.ntp.org
  server 2.pool.ntp.org
  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端口。
 
  1. #! /bin/bash
  2. PATH=$PATH:/sbin:/usr/sbin:/usr/local/sbin
  3. export PATH
  4. create()
  5. {
  6. cat >/usr/local/sbin/ntp.txt<
  7. 210.72.145.44
  8. clock.via.net
  9. time.windows.com
  10. time-a.nist.gov
  11. time-b.nist.gov
  12. time-nw.nist.gov
  13. time.stdtime.gov.tw
  14. ntp.nasa.gov
  15. EOF
  16. }
  17. if [ ! -f /usr/local/sbin/ntp.txt ];
  18. create
  19. fi
  20. LOG=/var/log/jbmon/secure/service.txt
  21. for svr in `cat /usr/local/sbin/ntp.txt`; do
  22. /usr/sbin/ntpdate $svr >> $LOG
  23. if [ $? = 0 ]; then exit; fi
  24. done
阅读(2774) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~