Collapse AllExpand All

Configure NTP

Eucalyptus requires that each machine have the Network Time Protocol (NTP) daemon started and configured to run automatically on reboot.
To use NTP:

  1. Install NTP on the machines that will host Eucalyptus components.
    yum install ntp
  2. Open the /etc/ntp.conf file and add NTP servers, as in the following example.
    server 0.pool.ntp.org
    server 1.pool.ntp.org
    server 2.pool.ntp.org
  3. Save and close the file.
  4. Configure NTP to run at reboot.
    chkconfig ntpd on
  5. Start NTP.
    service ntpd start
  6. Synchronize your server.
    ntpdate -u <your_ntp_server>
  7. Synchronize your system clock, so that when your system is rebooted, it does not get out of sync.
    hwclock --systohc
  8. Repeat on each host that will run a Eucalyptus component.