GBase 8s
安装配置
文章
ER同步中NTP的配置方法
GBase社区管理员发表于2023-05-11 16:08:4228次浏览0个评论
1. 关闭防火墙和selinux
客户端和server端都需要执行:
systemctl stop firewalld
systemctl disable firewalld
setenforce 0
编辑/etc/selinux/config
SELINUX=disabled2. 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
评论已关闭
热门帖子
- 12025-12-01浏览数:182759
- 22023-05-09浏览数:25044
- 42023-09-25浏览数:18519
- 52020-05-11浏览数:17526