zoukankan      html  css  js  c++  java
  • centos时间同步方法

    centos时间同步方法

    电脑软硬件应用网 45IT.COM 时间:2012-12-08 18:09 作者:李本清
    新装的服务器可能设置了错误的,需要调整时区并调整时间.如下是使用NTP来从一个时间服务器同步 cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime ntpdate us.pool.ntp.org 很简单吧,解析一下,第一句是把当前时
     

    新装的服务器可能设置了错误的,需要调整时区并调整时间.如下是使用NTP来从一个时间服务器同步

    cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime

    ntpdate us.pool.ntp.org

    很简单吧,解析一下,第一句是把当前时区调整为上海就是+8区,想改其他时区也可以去看看/usr/share/zoneinfo目录;

    然后第二句是利用ntpdate同步标准时间.

    没有安装ntpdate的可以yum一下:

    yum install ntp

    加入定时计划任务,每隔10分钟同步一下时钟

    crontab -e

    0-59/10 * * * * /usr/sbin/ntpdate us.pool.ntp.org | logger -t NTP

    中国国家授时中心:
    http://www.time.ac.cn/stime.asp

    其他网络时间服务器地址如下:(也可以自己去搜索下)

    time.nist.gov (美国)
    ntp.fudan.edu.cn (复旦) )(国内用户推荐使用此服务器)
    timekeeper.isi.edu
    subitaneous.cpsc.ucalgary.ca
    usno.pa-x.dec.com
    time.twc.weather.com
    swisstime.ethz.ch
    ntp0.fau.de
    ntp3.fau.de
    time-a.nist.gov
    time-b.nist.gov
    time-nw.nist.gov
    nist1-sj.glassey.com

    210.72.145.44 也是一个不错的地址,速度很快!

  • 相关阅读:
    XML的语法
    dell omsa 监控,Nrpe信号量泄露
    cx_Oracle 报错 Reason: image not found
    cx_Oracle 中文乱码问题解决
    High Memory in the Linux Kernel
    使用二分法查找mobile文件中区号归属地
    mysql 导出csv
    行删除按钮功能
    vsftp 根据用户设置
    安装zabbix报错configure: error: libcurl library not found
  • 原文地址:https://www.cnblogs.com/u0mo5/p/4788007.html
Copyright © 2011-2022 走看看