Linux时区设置
更改/etc/localtime
删除/etc/localtime:
1 | $ rm -f /etc/localtime |
比如选择中国上海时区,重新做个软链接:
1 | $ ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime |
配置NTP服务器
修改/etc/ntp.conf:
1 | ... restrict 10.0.100.0 mask 255.255.255.0 nomodify #允许某网段客户端访问 ... server s1a.time.edu.cn #使用教育网内时间源 server 127.127.1.0 #本地时钟,当断网时保证同步 fudge 127.127.1.0 stratum 10 ... |
启动ntpd服务:
1 | $ service ntpd start |
客户端同步时间:
1 | $ ntpdate 10.0.100.6 |
可以用crontab定时同步,如每2小时同步一次,crontab -e:
1 | 0 */2 * * * /usr/sbin/ntpdate 10.0.100.6 |
参考: