ntp服务安装
ntp服务安装
1.查看是否存在对应服务
rpm -qa | grep ntp
2.如果不存在安装对应服务
yum install ntp ntpdate -y
3.查看ntp运行状态
systemctl status ntpd
4.修改配置文件
vim /etc/ntp.conf
注释
#拒* IPv4 的用户与IPv6的用户
#restrict default kod nomodify notrap nopeer noquery
#restrict -6 default kod nomodify notrap nopeer noquery
#放行本机来源
#restrict 127.0.0.1
#restrict -6 ::1
#默认ntp服务器
#server 0.centos.pool.ntp.org iburst
#server 1.centos.pool.ntp.org iburst
#server 2.centos.pool.ntp.org iburst
#server 3.centos.pool.ntp.org iburst
添加
#默认只能通过ntp进行校时
restrict default nomodify notrap nopeer noquery
#ntp服务器地址
server 172.16.1.1
fudge 172.16.1.1 stratum 0
5.重启服务并查看状态
systemctl restart ntpd 或 service ntpd restart
6.查看是否同步
ntpq -p
7.如果失败查看是否开启端口(ntp协议默认端口123)
firewall-cmd –permanent –add-port=123/udp
firewall-cmd –reload
8.设置开机自启
**chkconfig –list ntpd 查看是否开机自启 **
systemctl enable ntpd 或 service ntpd enable
————————————————
版权声明:本文为CSDN博主「Farmermark993」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/zalu9810/article/details/112358788