ER同步中NTP的配置方法
2022/3/3 6:19:27
本文主要是介绍ER同步中NTP的配置方法,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
1. 关闭防火墙和selinux
客户端和server端都需要执行:
systemctl stop firewalld systemctl disable firewalld setenforce 0 编辑/etc/selinux/config SELINUX=disabled
2. yum install ntp ntpdate -y
server/client都需要安装
3. server端编辑/etc/ntp.conf
server 127.127.1.0 ER1 #127.127.1.0固定值,ER1是主机名 local clock restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap #192.168.1.0的网段
4. server端执行:
systemctl start ntpd
systemctl enable ntpd
5. server 端执行查看同步情况
ntpq -p
6. server端重启约5分钟后,客户端执行时钟同步
# ntpdate 192.168.1.11
2 Mar 23:16:55 ntpdate[3850]: step time server 192.168.1.11 offset 302.482476 sec
# ntpdate 192.168.1.11
2 Mar 23:17:19 ntpdate[3872]: adjust time server 192.168.1.11 offset -0.000017 sec
7. 定时同步
crontab -e 00 01 * * * root /usr/sbin/ntpdate 192.168.1.11;/sbin/hwclock -w
这篇关于ER同步中NTP的配置方法的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-23Springboot应用的多环境打包入门
- 2024-11-23Springboot应用的生产发布入门教程
- 2024-11-23Python编程入门指南
- 2024-11-23Java创业入门:从零开始的编程之旅
- 2024-11-23Java创业入门:新手必读的Java编程与创业指南
- 2024-11-23Java对接阿里云智能语音服务入门详解
- 2024-11-23Java对接阿里云智能语音服务入门教程
- 2024-11-23JAVA对接阿里云智能语音服务入门教程
- 2024-11-23Java副业入门:初学者的简单教程
- 2024-11-23JAVA副业入门:初学者的实战指南