这篇文章给大家介绍下如何将当前服务器变成一个时间同步服务器,可以让其他服务器时间与该服务器时间进行同步。我将操作方法整合进了脚本中,实现一键部署时间同步服务器。
时间服务器部署
1. [root@Ansible ~]# cat /bash/ntpdate_server.sh 2. #!/bin/bash 3. 4. # 安装 NTP 服务 5. yum -y install ntp 6. 7. # 配置ntp.conf文件 8. cat << EOF >> /etc/ntp.conf 9. server 127.127.1.0 10. fudge 127.127.1.0 stratum 8 11. 12. restrict default nomodify notrap nopeer noquery 13. restrict 127.0.0.1 14. EOF 15. 16. # 启动ntp服务并设置开机自启动 17. systemctl start ntpd.service 18. systemctl enable ntpd.service 19. 20. # 开放udp 123端口 21. firewall-cmd --add-port=123/udp --permanent 22. firewall-cmd --reload 23. 24. echo "已将10.0.0.61配置为NTP时间服务器!" 25. [root@Ansible ~]# sh /bash/ntpdate_server.sh 26. Loaded plugins: fastestmirror 27. Determining fastest mirrors 28. * base: mirrors.aliyun.com 29. * extras: mirrors.aliyun.com 30. * updates: mirrors.aliyun.com 31. base | 3.6 kB 00:00 32. epel | 4.7 kB 00:00 33. extras | 2.9 kB 00:00 34. updates | 2.9 kB 00:00 35. (1/2): epel/x86_64/updateinfo | 1.0 MB 00:05 36. (2/2): epel/x86_64/primary_db | 7.0 MB 00:21 37. Package ntp-4.2.6p5-29.el7.centos.2.x86_64 already installed and latest version 38. Nothing to do 39. FirewallD is not running 40. FirewallD is not running 41. 已将10.0.0.61配置为NTP时间服务器!
客户机测试
1. [root@LB00 ~]# date -s 20080808 2. Fri Aug 8 00:00:00 CST 2008 3. [root@LB00 ~]# date 4. Fri Aug 8 00:00:02 CST 2008 5. [root@LB00 ~]# ntpdate 10.0.0.61 6. 13 May 16:43:45 ntpdate[5658]: step time server 10.0.0.61 offset 465836637.498873 sec
成功校对,思路就是安装NTP服务,配置NTP文件,开启NTP服务,开放NTP端口
服务端修改时间,客户端再次同步
1. [root@Ansible ~]# date -s 20080808 2. Fri Aug 8 00:00:00 CST 2008 3. [root@Ansible ~]# systemctl restart ntpd 4. 5. [root@LB00 ~]# ntpdate 10.0.0.61 6. 8 Aug 00:02:10 ntpdate[5665]: step time server 10.0.0.61 offset -465842879.257505 sec
同样没有问题,只是服务端要重启下服务,重新读取下配置文件,也就是读取服务端当前的时间。
我是koten,10年运维经验,持续分享运维干货,感谢大家的阅读和关注!