首页 热点资讯 义务教育 高等教育 出国留学 考研考公

linux 时间同步ntp问题,客户端如何同步时间?

发布网友 发布时间:2022-04-22 23:52

我来回答

5个回答

热心网友 时间:2023-06-29 02:37

解决方案:
在linux 上配置NTP 时间同步,具休操作步骤,整理如下:
1. 安装软件包(在服务端和客户端):
yum install ntp
2. 服务器端配置
例如:
首先,服务端设定IP地址为:192.168.146.110
修改ntp配置文件
vim /etc/ntp.conf
server 0.redhat.pool.ntp.org //设定上级服务器
restrict 192.168.146.0 mask 255.255.255.0 nomodify //设定哪些client机器可以和ntp server进行同步
//启动NTP服务前,手动校正一次时间
ntpdate 0.redhat.pool.ntp.org
service ntpd restart
chkconfig ntpd on
//查看ntp服务状态
netstat -ln | grep 123
ntpstat
3.客户端配置:
ntpdate 192.168.146.110 //与NTP server 同步时间
或者定期同步
crontab -e
*/5 * * * * /usr/sbin/ntpdate -u 192.168.146.110 //每五分钟同步一次
重启crond服务/etc/init.d/crond restart
ntpq -p //查看同步状态

热心网友 时间:2023-06-29 02:37

让ntpd开机启动,会自动联网同步时间的。

热心网友 时间:2023-06-29 02:38

sudo ntpdate cn.pool.ntp.org输入这条命令同步时间 如果ntpdate无效 说明没有安装追问应该安装了,我输入rpm -qa ntp后
ntp-4.2.4p8-1.3.28

追答rpm只有你有rpm包才能安装

热心网友 时间:2023-06-29 02:38

为什么不问问神奇的archwiki呢?

热心网友 时间:2023-06-29 02:39

可以同步到一个ntp服务器上去啊

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com