码迷,mamicode.com
首页 > 其他好文 > 详细

5分钟入 门ntp

时间:2020-02-17 09:16:46      阅读:59      评论:0      收藏:0      [点我收藏+]

标签:时间服务器   cron   clock   rest   etc   pool   res   oca   emctl   

5分钟入 门ntp

ntp 最原始的时间服务器

ntp install

yum install ntp ntpdate
systemctl enable ntpd && systemctl restart ntpd

ntp config server

# vi /etc/ntp.conf
server cn.pool.ntp.org prefer
restrict 192.168.1.1 mask 255.255.255.0 nomodify

server  127.127.1.0     # localclock
fudge   127.127.1.0 stratum 10

# restart service
systemctl enable ntpd && systemctl restart ntpd 

ntp config client

# vi /etc/ntp.conf
server cn.pool.ntp.org prefer

# restart service
systemctl enable ntpd && systemctl restart ntpd

ntp check

ntpq -p

crontab sync

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

5分钟入 门ntp

标签:时间服务器   cron   clock   rest   etc   pool   res   oca   emctl   

原文地址:https://blog.51cto.com/justinit/2471486

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!