千家信息网

ntp命令使用方法

发表于:2024-11-17 作者:千家信息网编辑
千家信息网最后更新 2024年11月17日,ntp是什么ntp 最原始的时间服务器ntp installyum install ntp ntpdatesystemctl enable ntpd && systemctl restart ntpd
千家信息网最后更新 2024年11月17日ntp命令使用方法

ntp是什么

ntp 最原始的时间服务器

ntp install

yum install ntp ntpdatesystemctl enable ntpd && systemctl restart ntpd

ntp config server

# vi /etc/ntp.confserver cn.pool.ntp.org preferrestrict 192.168.1.1 mask 255.255.255.0 nomodifyserver  127.127.1.0     # localclockfudge   127.127.1.0 stratum 10# restart servicesystemctl enable ntpd && systemctl restart ntpd 

ntp config client

# vi /etc/ntp.confserver cn.pool.ntp.org prefer# restart servicesystemctl enable ntpd && systemctl restart ntpd

ntp check

ntpq -p

crontab sync

#vi /etc/crontab*/5 * * * * root ntpdate -s 192.168.1.1 ; hwclock -w
0