虚拟化环境中安装部署NTP服务器
网络时间协议,英文名称:Network Time Protocol(NTP)是用来使计算机时间同步化的一种协议,它可以使计算机对其服务器或时钟源(如石英钟,GPS等等)做同步化,它可以提供高精准度的时间校正。目的是所有主机的时间同步。安装一台Centos7系统的虚拟机,最小化安装,命名为NTP。配置默认最小性能即可,1cpu,2G内存,16G硬盘空间,...
网络时间协议,英文名称:Network Time Protocol(NTP)是用来使计算机时间同步化的一种协议,它可以使计算机对其服务器或时钟源(如石英钟,GPS等等)做同步化,它可以提供高精准度的时间校正。目的是所有主机的时间同步。
安装一台Centos7系统的虚拟机,最小化安装,命名为NTP。配置默认最小性能即可,1cpu,2G内存,16G硬盘空间,
设置主机名:hostnamectl set-hostname ntp 之后重启
设置网络:vi /etc/sysconfig/network-scripts/ifcfg-ens192
关闭防火墙:systemctl stop firewalld && systemctl disable firewalld
关闭SELinux安全模式:
setenforce 0
getenforce
sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/selinux/config
配置YUM源:
安装NTP服务组件:yum install -y ntp
配置阿里云镜像站NTP服务:
配置之前,测试服务器是否能够访问到阿里云NTP服务器:ping ntp.aliyun.com -c 5
修改/etc/ntp.conf配置文件:vi /etc/ntp.conf
注释掉原来配置文件中的NTP服务器地址,添加阿里云NTP服务器地址。
启动ntp服务: systemctl start ntpd
设置ntp服务开机自启动 : systemctl enable ntpd
查看ntp服务是否正常 : systemctl status ntpd
查看NTP源 :ntpq -p
查看NTP服务状态:ntpstat
# 输出如下内容,表示在同步中,需要耐心等待一下
[root@ntp ~]# ntpstat
unsynchronised
time server re-starting
polling server every 8 s
# 输出如下内容,表示同步成功
[root@ntp ~]# ntpstat
synchronised to NTP server (203.107.6.88) at stratum 3
time correct to within 958 ms
polling server every 64 s
使用 NTP 服务器进行主机的时间和日期同步
更多推荐
所有评论(0)