Linux change timezone and force ntpd synchronization

This short article shows how to change the timezone of the Linux distribution as well as forcing the synchronisation of date/time with the ntpd servers

This applies specifically applies to CentOS so some changes might be possible depending on the distribution
1.Change timezone
localtimezone
1
2
3
cp /etc/localtime /root/old.timezone
rm /etc/localtime
ln –s /usr/share/zoneinfo/Europe/Zurich /etc/localtime
2.Add ntpd servers to you configuration file (optional)

Edit (or create) the /etc/ntpd.conf and add the appropriate ntpd servers :

ntpd.conf
1
2
server xxx.xxx.xxx.xxx
server xxx.xxx.xxx.xxx
note: xxx.xxx.xxx.xxx is the ip or domain name of the server
3.Stop the ntpd daemon
stop ntpd daemon
1
/etc/init.d/ntpd stop
4.Force the date update

Force the update of the date with the new timezone and eventually the ntpd servers

force date update
1
ntpdate xxx.xxx.xxx.xxx
5.Stop the ntpd daemon
start ntpd daemon
1
/etc/init.d/ntpd start
6.Stop the ntpd daemon
check appropriate date and timezone
1
date

No comments:

Post a Comment

OSX show used ports or listening applications with their PID

On OSX you can display applications listening on a given port using the lsof the commands described below will show listening application...