centos下快速同步时间
By admin
- One minute read - 73 words安装ntpdate
yum -y install ntp
vi /etc/crontab 添加下面这行
30 21 * * * root /usr/sbin/ntpdate cn.pool.ntp.org && /sbin/hwclock -w
:wq (保存退出) 手动更新时间方法:ntpdate cn.pool.ntp.org hwclock -w 这里是更新ROM的时间
文件格式为:分钟(0-59) 小时(0-23) 日期(1-31) 月份(1-12) 周(0-7) user command 意思是:root用户 在每天21:30 分执行ntpdate comamnd 同步到 cn.pool.ntp.org 这个时间池,并且将更新的时间写入到 ROM里保存。
备注:不要忘记开启服务啊! chkconfig ntpd –list (查看0~6个runlevel 是否按照阁下意愿开启或关闭 ntpd服务) chkconfig ntpd –level 35 on (开启runlevel 3和5的ntpd服务) chkconfig ntpd on (开启runlevel 2345的ntpd服务) chkconfig ntpd off (关闭所有runlevel的ntpd服务)
更多时间服务器地址:
server 0.asia.pool.ntp.org
server 1.asia.pool.ntp.org
server 2.asia.pool.ntp.org
server 3.asia.pool.ntp.org