Below you will find pages that utilize the taxonomy term “ntpdate”
December 18, 2010
FreeBSD系统时间调整
"先设置时区:\n# tzsetup\n再与国家授时中心服务器对时:\n# ntpdate 210.72.145.44\n以后自动同步:\n首先修改 /etc/rc.conf 添加\nntpd_enable=”YES”\n到最后一行。\n然后配置对时服务器:\n# vi /etc/ntp.conf\nserver 210.72.145.44 prefer server 159.226.154.47 server 127.127.1.0 fudge 127.127.0.1 stratum 5 restrict default ignore restrict 127.0.0.0 mask 255.0.0.0 restrict 192.168.0.0 mask 255.255.255.0 noquery nopeer notrust restrict 210.72.145.44 noquery restrict 159.226.154.47 noquery driftfile /var/db/ntpd.drift\n#/var/run/xntpd.pid\n参考:\nFreeBSD系统时间调整让FreeBSD使 …"
October 28, 2010
centos下快速同步时间
"安装ntpdate\nyum -y install ntp\nvi /etc/crontab 添加下面这行\n30 21 * * * root /usr/sbin/ntpdate cn.pool.ntp.org \u0026amp;\u0026amp; /sbin/hwclock -w\n:wq (保存退出) 手动更新时间方法:ntpdate cn.pool.ntp.org hwclock -w 这里是更新ROM的时间\n文件格式为:分钟(0-59) 小时(0-23) 日期(1-31) 月份(1-12) 周(0-7) user command 意思是:root用户 在每天21:30 分执行ntpdate comamnd 同步到 cn.pool.ntp.org 这个时间池,并且将更新的时间写入到 ROM里保存。\n备注:不要忘记开启服务啊! chkconfig ntpd –list (查看0~6个runlevel 是否按照阁下意愿开启或关闭 ntpd服务) chkconfig ntpd –level 35 on (开启runlevel 3和5的ntpd服务) chkconfig ntpd on (开启runlevel …"
October 11, 2010
在FreeBSD下用NTP进行服务器的时钟同步
"使用Network Time Protocol (NTP)来同步服务器的时间的方法如下:\n首先在服务器启动的时候需要使用ntpdate一次性的把系统时钟同步过来。在/etc/rc.conf里面加上ntpdate_enable=”YES”就可以在系统启动的时候调用ntpdate进行一次时间同步了。 在rc.conf里面如果没有指定ntpdate_hosts参数的话,ntpdate就会读取/etc/ntp.conf文件里面的server设置。\n使用ntpdate同步了时钟以后,还需要通过ntpd来不断监视和调整时钟的正确性。 启动ntpd的方法是在/etc/rc.conf里面加上ntpd_enable=”YES”。\nntpdate和ntpd都需要读取/etc/ntp.conf里面的配置信息。最简单的ntp.conf配置文件如下:\nserver 0.asia.pool.ntp.org server 1.asia.pool.ntp.org server 2.asia.pool.ntp.org server 3.asia.pool.ntp.org\ndriftfile …"
August 16, 2010
ntpdate linux时间同步命令
"ntpdate linux时间同步命令\n名称 ntpdate – 通过NTP 设置日期和时间 概要 ntpdate [ -Bbdpqsuv ] [ -a key# ] [ -e authdelay ] [ -k keyfile ] [ -o version ] [ -p samples ] [ -t timeout ] server[ … ] 说明 ntpdate 通过轮询指定为服务器参数的网络时间协议(NTP) 服务器来设置本地日期和时间,从而确定正确的时间。它必须以根用户身份在本地主机上运行。从每个指定的服务器中可获取大量的示例,并且还应用了NTP 时钟过滤器和选择算法的子集,以选择最佳的算法。请注意, ntpdate 的准确性和可靠性取决于服务器的数量、每次运行它时的轮询数以及运行之间的时间间隔。\nntpdate 根据需要可以手动运行来设置主机时钟,也可以从主机启动脚本中运行,在引导时设置时钟。某些情况下,它可用于在启动NTP 守护程序xntpd 之前对时钟进行初始设置。\n也可以从cron 脚本中运行ntpdate 。但是务必要注意,包含人为产生的cron 脚本的ntpdate …"