本帖最后由 lvshengjun 于 2022-10-8 12:32 编辑
一主端配置: 主端ip地址:192.168.2.211
1.关闭selinux
vi /etc/selinux/config
编辑:
selinux=disabled
关闭防火墙
systemctl stop firewalld
查看防火墙状态
systemctl status firewalld
systemctl disable firewalld
2.yum install ntp
3.vi /etc/ntp.conf
编辑:
禁用
#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
在最后一行添加
server 127.127.1.0 iburst
验证服务是否启动成功
systemctl restart ntpd
systemctl enable ntpd
netstat -tunlp |grep ntp
验证NTP是否正常工作
ntpstat
列出当前主机的NTP和上层NTP的状态
二、客户端配置:客户端ip192.168.2.58
yum install ntp
vi /etc/ntp.conf
编辑:
禁用
#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
在最后一行添加:
server 192.168.2.211
restrict 192.168.2.211 nomodify notrap noquery
运行ntp和ntpd
systemctl restart ntpd
systemctl enable ntpd
验证NTP服务同步状态
ntpq -p
查看ntpd 的当前状态。
ntpstat
三、主端修改时间
date -s "2020-08-18 16:00:00"
四、客户端同步
同步服务器:
ntpdate –u 192.168.2.211(指主端IP)
自动时间更新
#添加下面一段
#表示每10分钟同步一次
[root@VM_0_13_centos ~]# crontab -e
*/10 * * * * /usr/sbin/ntpdate -u pool.ntp.org或者是时间服务器的IP地址 >/dev/null 2>&1
[root@VM_0_13_centos ~]# systemctl restart crond #重启
[root@VM_0_13_centos ~]# date #查看时间
中国科学院国家授时中心为更好的满足用户的需求,提高网络授时服务质量,2019年9月21日搭建了一套新的网络授时服务系统,网络授时服务器的域名为“ntp.ntsc.ac.cn”,IP地址为“114.118.7.163” |