Linux 服务器时间同步
方法一
1 | # 安装 ntpd 相关服务 |
方法二
下载 ntpdate
yum install -y ntpdate
调整时区为上海,也就是北京时间+8区
cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
yes | cp -f /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
使用NTP来同步时间
ntpdate us.pool.ntp.org
定时同步时间(每隔10分钟同步时钟)
1 | crontab -l >/tmp/crontab.bak |