NTP同步服务器时间
NTP简介
网络时间协议(英语:Network Time Protocol,缩写:NTP)是在数据网络潜伏时间可变的计算机系统之间通过分组交换进行时钟同步的一个网络协议,位于OSI模型的应用层。
NTP的作用
NTP的作用是为了所有参与计算机的协调世界时(UTC)时间同步到几毫秒的误差内。
CentOS基于NTP的时间同步
安装ntp:
1 | sudo yum -y install ntp |
修改/etc/ntp.conf
1 | Use public servers from the pool.ntp.org project. |
设置时区
1 | sudo timedatectl set-timezone Asia/Shanghai |
时间同步 手工发起同步:
1 | sudo ntpdate ntp1.aliyun.com # 查看时间是否有变更 |
启动NTP服务:
1 | sudo systemctl enable ntpd.service sudo systemctl start ntpd.service |