`
- 浏览:
25854 次
- 性别:
- 来自:
北京
-
linux下利用ntpdate同步时间并定时更新时间
1,首先vim /etc/ntp.conf
# For more information about this file, see the man pages
# ntp.conf(5), ntp_acc(5), ntp_auth(5), ntp_clock(5), ntp_misc(5), ntp_mon(5).
driftfile /var/lib/ntp/drift
# Permit time synchronization with our time source, but do not
# permit the source to query or modify the service on this system.
restrict default kod nomodify notrap nopeer noquery
restrict -6 default kod nomodify notrap nopeer noquery
# Permit all access over the loopback interface. This could
# be tightened as well, but to do so would effect some of
# the administrative functions.
#restrict 127.0.0.1
#restrict -6 ::1
restrice 202.112.10.36
restrice 202.112.29.82
restrice 202.112.26.37
restrice 202.112.7.13
restrice 210.34.128.32
server 202.112.10.36 #s2c.time.edu.cn
server 202.112.29.82 #s2f.time.edu.cn
server 202.112.26.37 #s2g.time.edu.cn
server 202.112.7.13 #s2m.time.edu.cn
server 210.34.128.32 #time.jmu.edu.cn
server 127.127.1.0 # local clock
fudge 127.127.1.0 stratum 10
logfile /var/log/ntp.log
restrict 192.168.1.0 mask 255.255.255.0
#restrict 202.112.0.7
#server 202.112.0.7 prefer
# Hosts on local network are less restricted.
#restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap
# Use public servers from the pool.ntp.org project.
# Please consider joining the pool (http://www.pool.ntp.org/join.html).
#server 0.centos.pool.ntp.org iburst
#server 1.centos.pool.ntp.org iburst
2,ntpdate 210.34.128.32 && hwclock -w
这个只是利用其中的一个服务器(210.34.128.32)
hwclock -w的作用是把同步的时间写入到BIOS中
----------------------------啦啦啦 我是分割线------------------------
3,定时同步 (这只是个例子 我还有另外一篇详细讲解了定时同步)
vim /etc/crontab
添加下面这行
*/10 * * * * root (ntpdate 210.34.128.32 && hwclock -w)
这行命令 是表示 每十分钟定时同步一次
----------------------------啦啦啦 我是分割线------------------------
注:
vim /etc/sysconfig/clock 在这个下面可以修改时区
修改为:
ZONE="Asia/Shanghai"
分享到:
Global site tag (gtag.js) - Google Analytics
相关推荐
【Linux时间同步与管理】 在Linux操作系统中,时间管理是一个重要的方面,因为它涉及到系统的正常运行以及与其他设备和服务的同步。本文将深入探讨Linux系统时间、硬件时间的设置、同步方法,以及不同机器间的时间...
但是,`ntpdate`可能会引起时间跳跃,因此通常与cron结合使用,定时同步。例如,添加到crontab的条目`0 12 * * * * /usr/sbin/ntpdate 192.168.0.1`会在每天12点同步时间。 使用NTPd服务优于`ntpdate`加cron的组合...
### Linux NTP时间同步...通过以上步骤,可以在Linux系统中实现时间的准确同步,并可以根据需要调整时区。这对于维护系统的稳定性和服务的一致性非常关键。希望这些方法能够帮助大家更好地管理Linux系统的时间设置。
发现服务器时间错了,设置下定时任务。 crontab -u root -e # 编辑内容 加入以下语句 每十分钟同步一次时间 */10 * * * * /usr/sbin/ntpdate ntp1.aliyun.com 第二天发现不起作用。 手动设置下,执行一下语句。 /...
可以使用 `crontab` 命令将 `ntpdate` 命令设置为定时任务,以便每 30 分钟进行一次时间同步。例如,可以使用以下命令: ``` */30 * * * * ntpdate 192.168.1.38 ``` 这样,NTP 客户端将每 30 分钟同步一次时间,...
本文将详细介绍如何在嵌入式Linux环境下使用`ntpdate`工具与Windows操作系统进行时间同步。 #### 二、环境准备 为了能够顺利地使用`ntpdate`与Windows进行时间同步,首先需要完成以下准备工作: 1. **Windows时间...
在Linux客户端上,可以通过crontab定时执行`ntpdate`命令来同步时间。例如,每5分钟同步一次时间: ```bash crontab -e 30 5 * * * /usr/sbin/ntpdate 192.168.0.21; /sbin/hwclock -w ``` 这里`192.168.0.21`...
10. **其他时间同步工具**:虽然ntpdate在某些场景下非常有用,但在某些现代Linux发行版中已被ntpd或systemd-timesyncd取代,这些服务提供更全面的时钟管理功能。 总结:ntpdate资源包为CentOS系统提供了离线安装...
此外,还需要配置cron定时任务,定期执行`ntpdate`命令以更新系统时间: ```bash # 在crontab中添加以下行 0 23 * * * /usr/sbin/ntpdate www.ntp.org 10 23 * * * /sbin/hwclock -w ``` 第一行表示每天23:00时...
### Linux系统时间NTP同步设置 #### 知识点概览 1. **NTP(Network Time Protocol)简介** 2. **Linux系统日期与时间查看命令** 3. **硬件时钟与系统时钟同步** 4. **手动进行NTP同步** 5. **定时任务设置自动NTP...
Linux 时间同步 Linux 时间同步是指在 Linux 系统中实现时间同步的技术,旨在确保系统时间的准确性和一致性。时间同步对于 Linux 系统的稳定运行和安全性至关重要。 一、时间同步的重要性 时间同步的重要性体现在...
6. **配置定时同步任务**:为了确保时间的持续准确性,可以在crontab中添加定时任务,每隔一段时间执行一次`ntpdate`命令: ```bash # crond -e 0-59/10 * * * * /usr/sbin/ntpdate 192.168.10.1 ``` 这条命令...
这种方法适用于长期且持续的时间同步,它利用`cron`定时任务和`ntpd`服务来定期更新系统时间。 1. 首先,你需要安装`ntpd`服务。在RPM包管理系统的Linux发行版上,可以运行: ```bash rpm -ivh ntp-4.1.2-4.EL3.1....
每天00:23之后,其他服务器将通过`ntpdate`命令与这台基准服务器进行时间同步,并使用`hwclock`命令将系统时间写入硬件时钟。 ##### 5. 进程等待时钟滴答 示例代码还提到了使用`select()`函数来等待时钟滴答。这...
3. 将时间同步命令加到系统定时任务中:编辑 `/etc/crontab` 文件,添加一条定时任务,例如 `30 8 * * * root /usr/sbin/ntpdate 192.168.0.1; /sbin/hwclock -w`,每天的 8:30 将进行一次时间同步。 NTP 服务的...
2. 设定同步时间间隔,并将SpecialPollInterval的值设为所需的时间间隔。 3. 将NTP服务器的IP地址添加到注册表中,并将Enabled的值设为1。 4. 启动NTP客户端,并重新启动Windows时间服务。 Linux系统NTP同步配置 ...
- 如果希望每2小时同步一次远程计算机时间并在同步后更新硬件时间,可以在Cron任务中添加如下命令: ``` */2 * * * * nettime -S 192.168.0.2 set; hwclock --systohc ``` #### 四、总结 通过以上两种方法,可以...
### Windows和Linux下服务器时间如何校正 #### 知识点概述 在现代网络环境中,确保服务器的时间准确无比重要,因为很多应用和服务都依赖于精确的时间同步。本文将详细介绍如何在Windows和Linux操作系统上配置NTP...
2. **自动时间同步**:为了确保系统时间始终与时间服务器保持同步,可以将时间同步命令添加到定时任务中。例如,每小时与时间服务器同步一次: ```shell echo "00 */1 * * * root /usr/sbin/ntpdate 66.0.193.14 ;...