首页 > 代码库 > centos 时区和时间设置

centos 时区和时间设置

查看时区
tzselect

设置时区

[root@db-server ~]# date -R
Sun, 11 Jan 2015 18:42:49 -0800
[root@db-server ~]# cd ~
[root@db-server ~]# vi .bash_profile
PATH=$PATH:$HOME/bin
 
TZ=‘Asia/Shanghai‘; export TZ
export PATH


[root@db-server ~]# source .bash_profile
[root@db-server ~]# date -R
Mon, 12 Jan 2015 10:44:35 +0800


时间同步
yum install ntp ntpdate ntp-doc  // 安装ntp服务
chkconfig ntpd on   //开启同步
watch ntpq -p  //查看ntpq开启状态
ntpdate pool.ntp.org //同步服务器上的时间
ntpdate cn.pool.ntp.org
ntpdate asia.pool.ntp.org 

配置文件: cat /etc/ntp.conf
         cat /etc/sysconfig/ntpd


----启动
 service ntpd start
 或
 /etc/rc.d/init.d/ntpd start
----停止
 service ntpd stop
 或
 /etc/rc.d/init.d/ntpd stop

本文出自 “张孝国” 博客,请务必保留此出处http://benchmarking.blog.51cto.com/12343634/1878157

centos 时区和时间设置