在 Ubuntu 上配置 ntp 服务器

在 Ubuntu 上配置 ntp 服务器

我正在尝试按照ntp网上提供的服务器之一配置系统上的时间。但是,时间没有改变。我在 Ubuntu 12.04 上执行此操作,该 Ubuntu 12.04 安装在 Oracle 中,VirtualBox以 Windows 7 作为主机系统。

saasbook@saasbook:~$ su 
Password: 
root@saasbook:/home/ubuntu# pgrep ntpd
1392
root@saasbook:/home/ubuntu# cd ..
root@saasbook:/home# cd ..
root@saasbook:/# ls
bin    dev   initrd.img  media  proc  sbin     sys  var
boot   etc   lib         mnt    root  selinux  tmp  vmlinuz
cdrom  home  lost+found  opt    run   srv      usr
root@saasbook:/# vi etc/ntp.conf

在其中,我添加了一台服务器,如下所示

driftfile /var/lib/ntp/ntp.drift

statistics loopstats peerstats clockstats
filegen loopstats file loopstats type day enable
filegen peerstats file peerstats type day enable
filegen clockstats file clockstats type day enable

# The server specified by me
server in.pool.ntp.org

# Use servers from the NTP Pool Project. Approved by Ubuntu Technical Board
# on 2011-02-08 (LP: #104525). See http://www.pool.ntp.org/join.html for
# more information.


server 0.ubuntu.pool.ntp.org
server 1.ubuntu.pool.ntp.org
server 2.ubuntu.pool.ntp.org
server 3.ubuntu.pool.ntp.org

之后我保存更改并重新启动 ntp,如下所示

root@saasbook:/# /etc/init.d/ntp restart
 * Stopping NTP server ntpd                                              [ OK ] 
 * Starting NTP server ntpd                                              [ OK ]

即使完成了所有这些操作,我的系统上的时间仍没有改变。我是不是遗漏了什么?

相关内容