如何建立ntpd服务器
首先需要保证服务器时间的正确
-
vim /etc/rc.local
加入
/usr/sbin/ntpdate asia.pool.ntp.org
定时更新服务器时间
-
crontab -e
加入
# ntpd server
00 */4 * * * /etc/init.d/ntpd stop && /usr/sbin/ntpdate asia.pool.ntp.org && /etc/init.d/ntpd start >> /tmp/ntpd.log 2>&1
其他服务器使用
ntpdate ntpd服务器IP
Note: 配置过程组要注意, 由于定时任务不是 登陆用户执行的,无法获取用户的环境变量,
所以命令需要使用绝对路径
附:ntpdate 服务器列表
CentOS:
0.centos.pool.ntp.org
1.centos.pool.ntp.org
2.centos.pool.ntp.org
国内可用的
ntp.fudan.edu.cn 复旦
210.72.145.44 国家守势中心服务器
亚洲地区的ntp服务器
Bangladesh — bd.pool.ntp.org (0)
China — cn.pool.ntp.org (3)
Hong Kong — hk.pool.ntp.org (1)
India — in.pool.ntp.org (2)
Indonesia — id.pool.ntp.org (2)
Iran — ir.pool.ntp.org (0)
Israel — il.pool.ntp.org (3)
Japan — jp.pool.ntp.org (5)
Korea — kr.pool.ntp.org (4)
Malaysia — my.pool.ntp.org (3)
Philippines — ph.pool.ntp.org (0)
Singapore — sg.pool.ntp.org (3)
Taiwan — tw.pool.ntp.org (7)
Thailand — th.pool.ntp.org (1)
Turkey — tr.pool.ntp.org (1)
United Arab Emirates — ae.pool.ntp.org (0)
国外的:
time.nist.gov 美国
time-a.nist.gov
time-b.nist.gov
time-nw.nist.gov
附另外一篇详细介绍的文章
http://blog.csdn.net/yelang_110/article/details/38292895