For CentOS 7:
http://8086.support/content/12/76/en/how-do-i-change-the-timezone-on-centos-7-to-utc.html
CentOS 7 now includes a tool to change the timezone, to view your current timezone run the following command
timedatectl
To change this to UTC (or to any other timezone) run the following:
timedatectl set-timezone UTC
For previous RedHat/CentOS releases:
On linux systems the system clock time zone should be set to UTC and ntpd should be running to keep the system clock synchronized. Proper configuration is described below (you must have root access to perform these procedures)
ZONE="UTC" UTC=true ARC=false
The ZONE line is the important line and it should be UTC or GMT.
server pool.ntp.org
<root@machine>service restart ntpd
It may take a while for the clock to sync up.
[root@machine]# service ntpd stop Shutting down ntpd: [ OK ] [root@machine]# ntpdate time.nist.gov 29 Nov 18:37:26 ntpdate[17670]: adjust time server XXX.XXX.XXX.XXX offset 0.003698 sec [root@machine]# service ntpd start ntpd: Synchronizing with time server: [ OK ] Starting ntpd: [ OK ]