centos从7.0以后,ntp做成了一个服务,也就是说可以运行一个守护进程来自动同步时间,而不用像5和6的版本一样把命令写入计划任务中,这个在做集群服务的时候非常有帮助。


安装ntp

[root@centos66 ~]# yum install ntp ntpdate -y


配置文件/etc/ntp.conf

[root@centos66 ~]# vim /etc/ntp.conf
#
server 0.asia.pool.ntp.org
server 1.asia.pool.ntp.org
server 2.asia.pool.ntp.org
server 3.asia.pool.ntp.org 

#保存退出


启动ntpd服务

[root@centos66 ~]# systemctl start ntpd
[root@centos66 ~]# systemctl enable ntpd


OK,时间NTP服务已经安装完毕。

CentOS7版本安装ntp服务_ntpdate