首先得确保这些服务器都能ping通否则是无法时间同步的。否则会报错“no server suitable for synchronization found”
NTP服务器(上海) :ntp.api.bz 中国ntp服务器:cn.pool.ntp.org pool.ntp.org
yum -y install ntp
cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime vim /etc/sysconfig/clock ZONE="Asia/Shanghai" UTC=false ARC=false
/usr/sbin/ntpdate -u ntp.api.bz
hwclock -r 查看当前硬件时间 hwclock -w 写入
vim /etc/rc.d/rc.local /usr/sbin/ntpdate -u ntp.api.bz> /dev/null 2>&1; /sbin/hwclock -w
vim /etc/crontab 00 10 * * * /usr/sbin/ntpdate -u ntp.api.bz > /dev/null 2>&1; /sbin/hwclock -w