首页 > 学院 > 操作系统 > 正文

NTP时间同步

2024-06-28 16:00:02
字体:
来源:转载
供稿:网友

linux时间同步

设置时区cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime联网情况:ntpdate us.pool.ntp.org修改时间date -s 11:21:00查看NTP状态service ntpd statusyum install -y ntpdchkconfig ntpd on#查看时区date -R#同步网络时间ntpdate 1.centos.pool.ntp.org配置ntp服务端:vi /etc/ntp.confrestrict 172.16.0.0 mask 255.255.255.0 nomodify notrap#使用本地时钟server  127.127.1.0fudge   127.127.1.0    stratum 10保存退出#开启防火墙udp 123端口iptables -I INPUT -p udp --dport 123 -j ACCEPTservice iptables save#在启动ntpd服务之前,先使用ntpdate手动同步下时间,免得本机与外部时间服务器时间差距太大,让ntpd不能正常同步。ntpdate 0.centos.pool.ntp.org #启动ntpd服务service ntpd start#其他机器机器发送同步请求ntpdate 172.16.0.11开机启动/etc/rc.d/rc.local
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表