码迷,mamicode.com
首页 > 其他好文 > 详细

centos 时区和时间设置

时间:2016-11-30 17:40:41      阅读:188      评论:0      收藏:0      [点我收藏+]

标签: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 时区和时间设置

标签:centos时区设置

原文地址:http://benchmarking.blog.51cto.com/12343634/1878157

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!