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

CentOS 越南韩国服务器时间同步配置方法

时间:2015-08-26 00:16:14      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:centos 越南 韩国 服务器时间同步配置方法

    由于公司的游戏需要在越南和韩国上线,越南的时间比我们慢一个小时,韩国的时间比我们快一个小时,所以服务器配置系统环境的时候需要设置越南服务器同步越南的时间点,韩国服务器同步韩国的时间点,下面设置方法如下:


一、设置越南服务器时间同步:

cat > /var/spool/cron/root <<EOF
*/30 * * * *  /usr/sbin/ntpdate ntp0.cs.mu.OZ.AU > /dev/null 2>&1
EOF

service crond restart


/bin/rm -f /etc/localtime

cp /usr/share/zoneinfo/Asia/Saigon /etc/localtime

cat > /etc/sysconfig/clock <<EOF
ZONE="Asia/Saigon"
UTC=false
ARC=false
EOF

cat > /etc/ntp.conf << EOF
server cn.pool.ntp.org prefer
server 210.72.145.44
server cn.pool.ntp.org
server ntp1.cs.mu.OZ.AU
server ntp0.cs.mu.OZ.AU
server ntp.alaska.edu
driftfile /var/lib/ntp/ntp.drift
EOF


ntpdate cn.pool.ntp.org
/sbin/hwclock -w



二、设置韩国服务器时间同步:

cat > /var/spool/cron/root <<EOF
*/30 * * * *  /usr/sbin/ntpdate ntp0.cs.mu.OZ.AU > /dev/null 2>&1
EOF

service crond restart


/bin/rm -f /etc/localtime

cp /usr/share/zoneinfo/Asia/Seoul /etc/localtime

cat > /etc/sysconfig/clock <<EOF
ZONE="Asia/Seoul"
UTC=false
ARC=false
EOF

cat > /etc/ntp.conf << EOF
server cn.pool.ntp.org prefer
server 210.72.145.44
server cn.pool.ntp.org
server ntp1.cs.mu.OZ.AU
server ntp0.cs.mu.OZ.AU
server ntp.alaska.edu
driftfile /var/lib/ntp/ntp.drift
EOF


ntpdate cn.pool.ntp.org
/sbin/hwclock -w


本文出自 “菜鸟中的战斗机” 博客,请务必保留此出处http://linushai.blog.51cto.com/4976486/1688098

CentOS 越南韩国服务器时间同步配置方法

标签:centos 越南 韩国 服务器时间同步配置方法

原文地址:http://linushai.blog.51cto.com/4976486/1688098

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