共计 2353 个字符,预计需要花费 6 分钟才能阅读完成。
Linux 服务器运行久时,系统时间就会存在一定的误差,一般情况下可以使用 date 命令进行时间设置,但在做数据库集群分片等操作时对多台机器的时间差是有要求的,此时就需要使用 ntpdate 进行时间同步。
一、修改时区:
# cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
修改为中国的东八区
# vi /etc/sysconfig/clock
ZONE=”Asia/Shanghai”
UTC=false
ARC=false
二、配置新的时间
日期设定:
# date -s 2017/03/06
时间设定:
# date -s 18:40:00
查看硬件时间(BIOS 的):
hwclock [-rw]
-r: 查看现有 BIOS 时间,默认为-r 参数
-w: 将现在的 linux 系统时间写入 BIOS 中
注:当我们进行完 Linux 时间的校时后,还需要以 hwclock -w 来更新 BIOS 的时间,因为每次开机的时候,系统会重新由 BIOS 将时间读出来,所以,BIOS 才是重要的时间依据。
[root@linuxidc ~]# hwclock -r
Wed 02 Nov 2016 02:53:35 AM CST -0.632895 seconds
同步 BIOS 时钟,强制把系统时间写入 CMOS:
# clock -w
三、实现 Internet 时间同步(这里可以忽略上面两步)
方法 1. 开机的时候自动网络校时:
vi /etc/rc.d/rc.local
/usr/sbin/ntpdate -u 192.168.0.2 192.168.0.3 192.168.0.4; /sbin/hwclock -w
# 这里几个 IP 是公司内部的 NTP 服务器
方法 2. 设定计划任务
crontab 格式如下:
# For details see man 4 crontabs
# Example of job definition:
# .—————- minute (0 – 59)
# | .————- hour (0 – 23)
# | | .———- day of month (1 – 31)
# | | | .——- month (1 – 12) OR jan,feb,mar,apr …
# | | | | .—- day of week (0 – 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
# | | | | |
# * * * * * command to be executed
设定 crontab 计划任务自动校时:
使用命令 crontab -e
crontab -e
10 5 * * * root /usr/sbin/ntpdate -u 210.72.145.44;hwclock -w
这样每天 5:10 自动进行网络校时,并同时更新 BIOS 的时间
——————————————————————————-
同步网络时间:输入 ntpdate time.nist.gov 同步网络时间
[root@linuxidc~]# ntpdate -u time.nist.gov #网络时间同步命令
13 Mar 13:39:57 ntpdate[3318]: adjust time server 216.229.0.179 offset 0.018134 sec
# 出现以上信息说明同步成功 #
注:如提示命令不存在,直接输入:yum install ntp -y 安装 ntp 软件包。
注:若不加上 - u 参数,会出现以下提示:no server suitable for synchronization found
-u:从 man ntpdate 中可以看出 - u 参数可以越过防火墙与主机同步;
210.72.145.44:中国国家授时中心的官方服务器。
ntp 常用服务器:
中国国家授时中心:210.72.145.44
NTP 服务器(上海):ntp.api.bz
美国:time.nist.gov
复旦:ntp.fudan.edu.cn
微软公司授时主机 (美国):time.windows.com
台警大授时中心(台湾):asia.pool.ntp.org
注:经测试中国国家授时中心与 NTP 上海服务器可以正常同步时间,注意需要加上 - u 参数越过防火墙与主机同步!
更多 NTP 时间服务器 相关教程见以下内容:
CentOS NTP 服务器安装与配置 http://www.linuxidc.com/Linux/2014-01/95258.htm
教你如何快速搭建 NTP 时间服务器 http://www.linuxidc.com/Linux/2017-02/140875.htm
搭建企业级 NTP 时间服务器 http://www.linuxidc.com/Linux/2014-02/97205.htm
Linux 下快速搭建 ntp 时间同步服务器 http://www.linuxidc.com/Linux/2014-07/104371.htm
CentOS 6.3 下实现 NTP 时间服务器 http://www.linuxidc.com/Linux/2014-08/105414.htm
开源软件包的安装及 ntp 时间服务器简析 http://www.linuxidc.com/Linux/2017-02/140342.htm
Linux 时间同步 NTP 服务的安装与配置 http://www.linuxidc.com/Linux/2016-10/135945.htm
Linux 系统 NTP 服务细节详述 http://www.linuxidc.com/Linux/2017-03/141435.htm
本文永久更新链接地址:http://www.linuxidc.com/Linux/2017-03/141745.htm