美文网首页
Linux时间同步

Linux时间同步

作者: 小小的小帅 | 来源:发表于2019-08-08 11:21 被阅读0次
  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 ntp 同步时间

    文章来自:linux ntp 同步时间,linux ntp时间同步的两种方法[https://blog.csdn....

  • linux时间同步

    时间同步法二: 网址 反应时间 服务器地址

  • linux时间同步

    安装ntp 同步时间 写入硬件

  • linux 同步时间

    CentOS系统时间同步的步骤如下: 1、下载ntpdate注:有些版本是没有自带ntpdate,因此需要下载 y...

  • Linux时间同步

    转载自(http://www.cnblogs.com/zhi-leaf/p/6281549.html)1、安装nt...

  • 同步Linux时间

    有时候, 因为某些原因, 我们设置错了时区或时间, 或者系统当前时间不正确的时候, 我们该如何做? 修改系统时区(...

  • Linux时间同步

    原创作品,允许转载,转载时请务必以超链接形式标明原始出处、作者信息和本声明,否则后果自负。如果你觉得这篇文章对你有...

  • Linux 时间同步

    Linux 服务器可以通过命令来进行时间同步。 一、ntpdate 同步网络时间 NTP 常用服务器: 经测试中国...

  • Linux时间同步

    查看时间date 简单设置时间date -s 00:00:01 查看ntp的安装包:yum list|grep n...

  • Linux时间同步

    发现科学上网不能用,看一下系统时间错了,更新了下时间就能上网了。

网友评论

      本文标题:Linux时间同步

      本文链接:https://www.haomeiwen.com/subject/xagtjctx.html