Linux时间同步

  1. 查看时间
    date

  2. 简单设置时间
    date -s 00:00:01

  3. 查看ntp的安装包:
    yum list|grep ntp
    ps -ef|grep ntpd


    image.png
  4. 查看ntpd状态
    service ntpd status


    image.png
  5. 修改配置文件:
    vi /etc/ntp.conf

  6. 禁止所有机器连接:
    restrict default ignore


    image.png

    去掉注释,允该IP段:


    image.png

    去掉注释,使用服务器本地时间:
    image.png
  7. 设置开机启动:
    chkconfig ntpd on
    同步时间:
    ntpdate 192.168.1.102


    image.png
  8. 查看ntpdate允许目录:
    which ntpdate


    image.png
  9. crontab定时同步时间:
    查看系统定时任务:
    crontab -l
    添加定时任务:
    crontab -e
    创建日志目录以及文件:
    /home/data/ntpd.log
    一分钟同步一次(测试例子):
    */1 * * * * /usr/sbin/ntpdate 192.168.1.51 >> /home/data/ntpd.log

你可能感兴趣的:(Linux时间同步)