1.安装ntp
yum install ntp -y
2.配置/etc/ntp.conf
#授权172.16.1.0网段上所有机器可以从这台机器上查询和时间同步
restrict 172.16.1.0 mask 255.255.255.0 nomodify notrap
#新增:时间服务器列表
server 0.cn.pool.ntp.org iburst
server 1.cn.pool.ntp.org iburst
server 2.cn.pool.ntp.org iburst
server 3.cn.pool.ntp.org iburst
#新增:当外部时间不可用时,使用本地时间
server $IP biurst
fudge 127.0.0.1 stratum 10
#新增:允许上层时间服务器主动修改本机时间
restrict 0.cn.pool.ntp.org nomodify notrap noquery
restrict 1.cn.pool.ntp.org nomodify notrap noquery
restrict 2.cn.pool.ntp.org nomodify notrap noquery
includefile /etc/ntp/crypto/pw
keys /etc/ntp/keys
disable monitor
#手动同步时间
ntpdate -u 1.cn.pool.ntp.org
#改时区
cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime