欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

Linux自动同步时间

程序员文章站 2022-10-27 17:37:45
一、安装时间同步工具 二、同步时间 1、修改时区 2、同步时间 3、写入硬件时间 4、自动时间同步 ......

一、安装时间同步工具

yum -y install ntp

二、同步时间

1、修改时区

cp -y /usr/share/zoneinfo/asia/shanghai /etc/localtime
vim  /etc/sysconfig/clock

zone="asia/shanghai"
utc=false
arc=false

2、同步时间

/usr/sbin/ntpdate -u cn.pool.ntp.org

3、写入硬件时间

hwclock -r
hwclock -w

4、自动时间同步

vim /etc/rc.d/rc.local

00 10 * * * root /usr/sbin/ntpdate -u cn.pool.ntp.org > /dev/null 2>&1; /sbin/hwclock -w 

  

crontab -e

00 10 * * * /usr/sbin/ntpdate -u cn.pool.ntp.org > /dev/null 2>&1; /sbin/hwclock -w