linux 时间同步,配置NTP服务器
ubuntu16.04 以上
系统自带systemd-timesyncd 来进行同步
systemctl status systemd-timesyncd.service
sudo vim/etc/systemd/timesyncd.conf
NTP=10.2.2.102
sudo systemctl restart systemd-timesyncd.service
red hat
yum install -y chrony
#临时同步时间方法
chronyd -q 'server ntp.ntsc.ac.cn iburst'
#永久同步
yum -y install chrony
cp /etc/chrony.conf /etc/chrony.conf.bak
vim /etc/chrony.conf
systemctl restart chronyd
systemctl enable --now chronyd
centos
安装ntp服务
分别vi /etc/ntp.conf里
找到 server 开头的地址配置
修改为 server 10.2.2.102
server 10.2.2.103
保存
#注释掉#pool 0.ubuntu.pool.ntp.org iburst 原本的时间同步
service ntprestart 重启时间服务
检查同步
ntpq -p
esc 退出编辑模式, I 进入编辑模式
保存退出 esc :wq
不保存退出 esc :q!
1)yum -y install chrony(ps.该服务在Redhat7以上默认有)
2)vim /etc/chrony.conf
server 192.168.0.1 iburst
启动
systemctl enable chronyd.service
systemctl start chronyd.service
5) timedatectl 即可同步时间