Linux自动(定时)同步时间

解答如下,以Centos为例:

1,修正本地时区及ntp服务

yum -y install ntp

rm -rf /etc/localtime

ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime

/usr/sbin/ntpdate -u pool.ntp.org

2,自动同步时间

添加下面一段

表示每10分钟同步一次

crontab -e 

/10* * * *  /usr/sbin/ntpdate-u pool.ntp.org >/dev/null2>&1

#重启服务

service crond restart

你可能感兴趣的:(Linux自动(定时)同步时间)