时间同步 ntp服务 同步时间,可以使用ntpdate命令,也可以使用ntpd服务。 这里给出的是 ntpdate服务 1、安装ntpdate服务 yum install ntpdate -y 2、使用ntpdate比较简单。格式如下: [root@linux ~]# ntpdate [-nv] [NTP IP/hostname] [root@linux ~]# ntpdate 192.168.0.2 [root@linux ~]# ntpdate ntp1.aliyun.com 3、设定任务计划使用,在crontab中添加: 0 12 * * * /usr/sbin/ntpdate ntp1.aliyun.com 4、可能存在的问题 如果想要让ntpdate同时同步硬件时间,可以设置/etc/sysconfig/ntpdate 文件。 在/etc/sysconfig/ntpdate 文件中,把SYNC_HWCLOCK=no 改成SYNC_HWCLOCK=yes就可以让硬件时间与系统时间一起同步。 ======================================================================== ntpd服务(Centos)推荐使用 1、安装NTP服务 yum install ntp -y 2、启用服务设置开机自启 systemctl start ntpd systemctl enable ntpd 3、修改配置文件:/etc/ntp.conf #注释下面4行 # server 0.centos.pool.ntp.org iburst # server 1.centos.pool.ntp.org iburst # server 2.centos.pool.ntp.org iburst # server 3.centos.pool.ntp.org iburst 替换成中国时间服务器: 查询服务器网址:https://blog.csdn.net/weixin_42588262/article/details/82501488 server 0.cn.pool.ntp.org iburst server 1.cn.pool.ntp.org iburst server 2.cn.pool.ntp.org iburst server 3.cn.pool.ntp.org iburst 4、重启NTP服务 systemctl restart ntpd ======================================================================== ======================================================================== ntpd服务(RedHat) 1、安装NTP服务 yum install chrony -y 2、启用服务设置开机自启 systemctl start chronyd systemctl enable chronyd 3、修改配置文件:/etc/chrony.conf #注释下面4行 # server 0.centos.pool.ntp.org iburst # server 1.centos.pool.ntp.org iburst # server 2.centos.pool.ntp.org iburst # server 3.centos.pool.ntp.org iburst 替换成中国时间服务器: 查询服务器网址:https://blog.csdn.net/weixin_42588262/article/details/82501488 server 0.cn.pool.ntp.org iburst server 1.cn.pool.ntp.org iburst server 2.cn.pool.ntp.org iburst server 3.cn.pool.ntp.org iburst 4、重启NTP服务 systemctl restart chronyd 5、验证服务是否启用 timedatectl 查看这两行: NTP enabled: yes NTP synchronized: yes ========================================================================