首页 > 代码库 > 启用ntp服务

启用ntp服务

1. 主服务器

修改配置vi /etc/ntp.conf

restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap  #允许别的服务器同步

server 0.centos.pool.ntp.org iburst  #主服务器自己的同步源

启动服务

service ntpd start

 

 

2. 从服务器

每5分钟同步一次

*/5 * * * * /usr/sbin/ntpdate -v -u 192.168.1.8 &>/dev/null

 

启用ntp服务