A. 国内常用NTP服务器地址
NTP 是网络时间协议(Network Time Protocol),它用来同步网络设备【如计算机、手机】的时间的协议。
目的很简单,就是为了提供准确时间。因为我们的手表、手机、电脑等设备,经常会跑着跑着时间就出现了误差,或快或慢的少几秒,时间长了甚至误差过分钟。
Windows系统上自带的两个: time.windows.com 和 time.nist.gov
MacOS上自带的两个: time.apple.com 和 time.asia.apple.com
NTP授时快速域名服务: cn.ntp.org.cn
中国科学院国家授时中心: ntp.ntsc.ac.cn
开源NTP服务器: cn.pool.ntp.org
设置时区(若已设置可略过): cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
安装NTP: yum install ntp
在配置文件/etc/ntp.conf中添加:
手工发起同步: ntpdate ntp.aliyun.com
启动NTP服务: service ntpd start
设置开机启动: chkconfig ntpd on
检查设置: chkconfig --list ntpd
也可以安装NTPDATE: yum install ntpdate
然后同步: ntpdate ntp.aliyun.com
加入定时计划任务,每隔10分钟同步一下时钟