To set the system clock, use the date command.

For Redhat Systems, use the following format:
Code:
date --set="Mmm DD HH:MM:SS YYYY"
Example:
Code:
date --set="May 08 15:52:29 2012"
For FreeBSD systems, use the following format:
date YYMMDDHHMM
Example:
date 1205081552
Will set the date/time to 2012, May 8th, 15:52 (3:52pm).

For any operating system, if you have the rdate program, you can simply type:
Code:
rdate -s rdate.directadmin.com
to sync your server with the atomic clock in Boulder, Colorado. Note that if the value set by rdate isn't correct, then you likely have a wrong timezone specified. Commands like system-config-date or redhat-config-date can set it up for you. Else you'd need to create a symbolic link from one of the timezones in /usr/shared/zoneinfo to /etc/localtime, eg:
Code:
mv /etc/localtime /etc/localtime.moved
ln -s /usr/share/zoneinfo/Canada/Mountain /etc/localtime