标准时钟同步服务
http://www.pool.ntp.org/zone/cn

在线安装NTP服务

  1. yum install ntpdate -y

离线下载NTP服务

  1. yum install --downloadonly --downloaddir=/root/deploy/ ntp

共三个包

ntp.zip

离线的机器上,在rpm所在的文件夹内,执行以下脚本

  1. rpm -Uvh --force --nodeps *.rpm

查看服务器是否安装ntp

  1. rpm -qa | grep ntp

查看状态

  1. systemctl status ntpd

5.修改配置文件

使该NTP服务器在不联网的情况下,使用本服务器的时间作为同步时间

  1. vim /etc/ntp.conf

把如下四行代码注释掉

  1. server 0.centos.pool.ntp.org iburst
  2. server 1.centos.pool.ntp.org iburst
  3. server 2.centos.pool.ntp.org iburst
  4. server 3.centos.pool.ntp.org iburst

在下面再添加一行

  1. server 127.127.1.0 iburst
  1. systemctl restart ntpd

查看是否同步

  1. ntpq -p

设置开机启动

  1. systemctl enable ntpd

修正时区

最后讲一下怎样修改linux的时区

  1. rm -rf /etc/localtime #删除当前默认时区
  2. ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime

将时区修改为中国上海的时区,当然,也可以设置中国香港或北京的时间。

image.png

https://www.cnblogs.com/hester/p/12313753.html