中国国家授时中心:210.72.145.44 -- 无法使用
NTP服务器(上海) :ntp.api.bz
中国ntp服务器: cn.pool.ntp.org pool.ntp.org
时间同步工具
rdate:rdate -s
ntpdate:ntpdate -u(使用-u参数会返回误差,也可以使用-s)
以上两个工具都可以用来同步网络时间服务器,系统默认都有安装,除非安装的时候没有选装NTP,没有安装可以使用如下方式安装
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
[root@localhost ~]# hwclock -r
修改系统时间:
date -s "YYYY-MM-DD hh:mm:ss" &&hwclock --systoh
写入硬件时间:
hwclock -w
------------------------------------------------------------------------------------------
示例
[root@zzh ~]# date
Thu Feb 14 09:13:35 CST 2019
[root@zzh ~]# date -s 09:16:00
Thu Feb 14 09:16:00 CST 2019
[root@zzh ~]# clock -w
[root@zzh ~]# hwclock -w
[root@zzh ~]# date
Thu Feb 14 09:16:15 CST 2019
------------------------------------------------------------------------------------------
-- 修改系统时间和硬件时间命令释义
1.date {查看目前本地的时间}
2.hwclock --show {查看硬件的时间}
3.如果硬件的时间是对不上,那就对硬件的时间进行修改、
4.hwclock --set --date '2019-02-14 15:30:54' {设置硬件时间}
5.hwclock --hctosys {设置系统时间和硬件时间同步}
6.clock -w {保存时钟}
7.最后在通过重启 init 6 查看系统时间是否生效
自动时间同步
1.配置开机启动校验
vim /etc/rc.d/rc.local
/usr/sbin/ntpdate -u cn.pool.ntp.org> /dev/null 2>&1; /sbin/hwclock -w
2.配置定时任务同步
vim /etc/crontab
00 01 * * * root /usr/sbin/ntpdate -u cn.pool.ntp.org > /dev/null 2>&1; /sbin/hwclock -w
或者
crontab -e
00 01 * * * /usr/sbin/ntpdate -u cn.pool.ntp.org > /dev/null 2>&1; /sbin/hwclock -w
10 5 * * * root /usr/sbin/ntpdate ntp_ip_addr && /sbin/hwclock -w
-- 注意:
ntp服务默认只会同步系统时间,如果想要让ntp同时同步硬件时间,可以设置/etc/sysconfig/ntpd文件,在/etc/sysconfig/ntpd文件中,
添加 SYNC_HWCLOCK=yes 这样,就可以让硬件时间与系统时间一起同步。