快速配置Linux的时间同步
1、设置时间同步的地区
cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
中国貌似只有上海同步服务器
2、执行时间同步程序
ntpdate us.pool.ntp.org
如果提示没有ntpdate则yum安装一下
yum install -y ntpdate
3、加入定时计划任务
crontab -e
0-59/10 * * * * /usr/sbin/ntpdate us.pool.ntp.org | logger -t NTP在每小时的0-59分钟中,每隔10分钟同步一次 原文链接:https://www.f2er.com/centos/381810.html