码迷,mamicode.com
首页 > 系统相关 > 详细

linux同步时间

时间:2018-04-24 19:00:09      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:local   安装   国家   写入   als   one   任务   /dev/null   shanghai   

linux时间有两个。一个是系统时间,一个是硬件时间!

同步国家时间的时候会出现报错:no server suitable for synchronization found

现在国家授权的   210.72.145.44   暂时不能使用

本文章主要讲ntpdate:

一、安装ntp     yum install ntp -y

二、更改时区

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

vim /etc/sysconfig/clock

ZONE="Asia/Shanghai"
UTC=false
ARC=false

三、同步时间

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

四、写入硬件时间

hwclock -w

 

自动时间同步

1、配置开机启动校验

vi /etc/rc.d/rc.local 

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

2、配置定时任务

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

 

linux同步时间

标签:local   安装   国家   写入   als   one   任务   /dev/null   shanghai   

原文地址:https://www.cnblogs.com/guzhensheng/p/8932426.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!