对于我们当前这种案例,主要目标是把 z01 这台服务器设置为时间服务器,剩下的 z02,z03 这两台机器同步 z01 的时间,我们需要这样做的原因是因为,整个集群架构中的时间,要保持一致。
** 检查当前系统时区,使用命令:
# date -R,如图:
注意这里,如果显示的时区不是 + 0800,你可以删除 localtime 文件夹后,再关联一个正确时区的链接过去,命令如下:
# rm -rf /etc/localtime
# ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
** 同步时间
# ntpdate pool.ntp.org
** 检查软件包
查看 ntp 软件包是否已安装,使用命令:
# rpm -qa | grep ntp,如图,红框中的内容:
如果没有红框中的内容,则可以使用命令:
# yum -y install ntp,来进行安装
** 修改 ntp 配置文件
# vi /etc/ntp.conf
去掉下面这行前面的# , 并把网段修改成自己的网段:
restrict 192.168.122.0 mask 255.255.255.0 nomodify notrap
注释掉以下几行:
#server 0.centos.pool.ntp.org
#server 1.centos.pool.ntp.org
#server 2.centos.pool.ntp.org
把下面两行前面的 #号去掉, 如果没有这两行内容, 需要手动添加
server 127.127.1.0 # local clock
fudge 127.127.1.0 stratum 10
最后,如图所示:
** 重启 ntp 服务
# systemctl start ntpd.service,注意,如果是 centOS7 以下的版本,使用命令:service ntpd start
# systemctl enable ntpd.service,注意,如果是 centOS7 以下的版本,使用命令:chkconfig ntpd on
** z03,z03 去同步 z01 这台时间服务器时间
首先需要关闭这两台计算机的 ntp 服务
# systemctl stop ntpd.service,centOS7 以下,则:service ntpd stop
# systemctl disable ntpd.service,centOS7 以下,则:chkconfig ntpd off
# systemctl status ntpd,查看 ntp 服务状态
# pgrep ntpd,查看 ntp 服务进程 id
同步第一台服务器 z01 的时间:
# ntpdate z01,如图:
** 制定计划任务, 周期性同步时间
# crontab -e
*/10 * * * * /usr/sbin/ntpdate z01,如图所示:
重启定时任务:
# systemctl restart crond.service,centOS7 以下使用:service crond restart,z03 这台机器的配置同理
作者:Z尽际
链接:https://www.jianshu.com/p/0ad52ec23309
來源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。