centos7安装ntp时间服务器

2019独角兽企业重金招聘Python工程师标准>>> centos7安装ntp时间服务器
文章图片

所有机器卸载chrony

yum -y remove chrony

安装iptables
sudo rpm -Uvh iptables-1.4.21-24.el7.x86_64.rpm --nodeps --force sudo rpm -Uvh iptables-services-1.4.21-24.el7.x86_64.rpm --nodeps --force

用rpm -qa|grep iptables命令进行验证
centos7安装ntp时间服务器
文章图片

验证始终同步,在所有节点执行ntpq -p命令
ntpq -p

启动iptables.service,并查看规则
systemctl start iptables.service iptables -L

安装ntp
rpm -Uvh autogen-libopts-5.18-5.el7.x86_64.rpm --nodeps --forcerpm -Uvh ntpdate-4.2.6p5-18.el7.centos.x86_64.rpm --nodeps --forcerpm -ivh ntp-4.2.6p5-18.el7.centos.x86_64.rpm --force --nodeps

修改配置文件
vi /etc/ntp.conf 注释server *.centos.pool.ntp.org

添加
server 192.168.11.60 #时间服务器IP

【centos7安装ntp时间服务器】重启ntpd服务
systemctl restart ntpd

查看ntp状态
systemctl statusntpd

设置开机启动
systemctl enable ntpd.service

验证始终同步,在所有节点执行ntpq -p命令
ntpq -p

[root@gfertest01 ~]# ntpq -p
Temporary failure in name resolution#--如果报这错误
修改每台机器hosts文件

转载于:https://my.oschina.net/u/3961327/blog/2870286

    推荐阅读