本文主要是介绍centos7.9的ntp时间同步,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
假设有3台机器。
A,B,C
sudo systemctl stop chronyd停止所有
没有外网,只有内网。
我们想将A机器作为同步的服务器。
所有机器安装
yum install ntp
1.所有机器设置时区。
timedatectl set-timezone Asia/Shanghai
2.去A机器安装ntpd
vi /etc/ntp.conf
server 127.127.1.0 # Local clock
fudge 127.127.1.0 stratum 10
sudo systemctl start ntpd
sudo systemctl enable ntpd
3.去B和C机器安装ntp
vi /etc/ntp.conf
server A的ip iburst
sudo systemctl start ntpd
sudo systemctl enable ntpd
看一下效果成功没。
ntpq -p
第二种方案,ntpdate(只同步一次)写定时任务同步(变成定时同步)
去A机器安装ntpd
yum install ntp
vi /etc/ntp.conf
server 127.127.1.0 # Local clock
fudge 127.127.1.0 stratum 10
sudo systemctl start ntpd
sudo systemctl enable ntpd
B和C机器安装ntpdate
ntpdate A机器ip
crontab -e
*/20 * * * * /usr/sbin/ntpdate A
这篇关于centos7.9的ntp时间同步的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!