linux-centos同步服务器时间

问题描述

服务器老是时间不对。


原因分析:

时间未同步,服务器启动后自动读取bios时间。


解决方案:

同步时间,并写入bios。
同步时间中心:
1.中国ntp服务器:cn.pool.ntp.org
2.上海交通大学网络中心NTP服务器:ntp.sjtu.edu.cn
3.中国国家授时中心:210.72.145.44
4. NTP服务器(上海) :ntp.api.bz

输入crontab -e命令设置定时任务
插入一下命令

 */30 * * * * /usr/sbin/ntpdate -u cn.pool.ntp.org > /dev/null 2>&1; /sbin/hwclock -w
//每30分钟同步一次
 */30 * * * *
 //使用ntpdate命令同步cn.pool.ntp.org的时间并把日志都重定向到空(即不显示日志)
 /usr/sbin/ntpdate -u cn.pool.ntp.org > /dev/null 2>&1;
 //将时间写入到bios
 /sbin/hwclock -w

你可能感兴趣的:(linux,运维,服务器,linux,centos,运维)