CentOS时间同步和时区修改
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS时间同步和时区修改相关的知识,希望对你有一定的参考价值。
1、查看时区
centos7:
timedatectl|grep "Time zone"
centos6:
cat /etc/sysconfig/clock
2、修改时区
centos7:
timedatectl set-timezone Asia/Shanghai # 设置系统时区为上海
centos6:
修改文件:
/etc/sysconfig/clock 内容:
ZONE="Asia/Shanghai"
3、时间的修改
安装ntp软件:
yum install ntp -y
同步命令:
ntpdate asia.pool.ntp.org
如果可以同步:
加定时启动:
/5 * /usr/sbin/ntpdate time.windows.com >/dev/null 2>&1
时间服务器:
asia.pool.ntp.org
time.nist.gov
time.nuri.net
以上是关于CentOS时间同步和时区修改的主要内容,如果未能解决你的问题,请参考以下文章