centos 自动同步服务器时间

参考文章:CentOS/Linux 自动同步服务器时间 - doiido 的专栏

因为服务器是美国的,比我们这边的时间慢,出于习惯,还是想调整为北京时间

1、下载 ntpdate,用ntp来实现时间同步

yum install -y ntpdate

2、调整时区为上海,我也好神奇为什么是上海,也就是北京时间 + 8 区

注:想改其他时区也可以去看看 / usr/share/zoneinfo 目录

cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime

3、使用 NTP 来同步时间

ntpdate us.pool.ntp.org

4、定时同步时间(每隔 10 分钟同步时钟)

写一个文件到该路径

echo "*/10 * * * * /usr/sbin/ntpdate us.pool.ntp.org | logger -t NTP" >> /tmp/crontab.bak

启动定时任务

crontab /tmp/crontab.bak

5、然后我们来验证下时间

date -R

你可能感兴趣的:(centos 自动同步服务器时间)