Setting up NTP Client on CentOS 5.3

setting up the ntp client for time synchronization on centos cando as follow

1. login to your shell as root

2. install ntp client by invoke this command
yum -y install ntp
3. edit ntp file configuration|
vi /etc/ntp.conf
comment out all the default time server and add your own time server. in case of me , Im in Thailand
so I use the time server that located in thailand.

server  clock.thaicert.org
server  time1.nimt.or.th
server  time2.nimt.or.th
server  time3.nimt.or.th

5. start the service

service ntpd start

6. start ntp on boot
chkconfig –levels 235 ntpd on

Tags: , ,

This entry was posted on Saturday, May 9th, 2009 at 7:18 am and is filed under sysadmin. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.

One Response to “Setting up NTP Client on CentOS 5.3”

  1. Sven Says:

    Correction for step 6:
    chkconfig –-level 235 ntpd on

Leave a Reply