1)先安装ntp服务:
# yum -y install ntp
(2)配置时间源
# vi /etc/ntp.confserver pool.ntp.org
供参考的其他时间服务器
server 0.pool.ntp.org
server 1.pool.ntp.org
server 2.pool.ntp.org
(3)配置是否为其他计算机提供时间服务
# vi /etc/ntp.conf
restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap
(4)配置开机自动运行时间同步服务
# chkconfig ntpd on
(5)启动或停止时间同步服务
# service ntpd start# service ntpd stop# service ntpd restart
(6)验证NTP服务是否已经运行
# pgrep ntpd
(7)初始同步
# ntpdate -u time.lib.tsinghua.edu.cn
(8)确认同步成功
# ntpq -p
(9)同时建议修改一下 /etc/sysconfig/ntpd 文件,是服务器BIOS时间一并更新
# vi /etc/sysconfig/ntpd
SYNC_HWCLOCK=yes
#service ntpd restart
把SYNC_HWCLOCK改成 yes 之后, 主机 BIOS 的时间也会跟着一起改变。
当然,如果要提供时间服务,还相应的开放udp 123端口。
(10) 调整服务器时区设置(以东八区-北京时间为例)
#cp -f /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
#reboot #重启服务器